Revision 232

View differences:

org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/LEEME.txt
1
===================
2
gvSIG Educa Batoví
3
===================
4

  
5
------------------------------------------------------------
6
Personalización de gvSIG para los OLPC del proyecto Ceibal
7
------------------------------------------------------------
8

  
9
Descripción
10
==============
11

  
12
Este fichero es un índice del contenido de este directorio
13

  
14
Requisitos
15
==============
16

  
17
* S.O Linux
18

  
19
* Maven 2.6 or higher
20

  
21
* Java JDK 1.5 or higher
22

  
23
Para trabajar con eclipse
24
--------------------------
25

  
26
Ver `Guía del desarrollador en gvSIG.org <https://gvsig.org/web/projects/gvsig-desktop/docs/devel/gvsig-devel-guide/2.0.0/>`_ y el fichero ``REAME-ECLIPSE.txt``
27

  
28

  
29
Contenido
30
=========
31

  
32
REAME.txt/LEEME.txt
33
--------------------
34

  
35
Este fichero. Está en formato reStructureText. Para mas información ver el `portal de gvSIG <https://gvsig.org/web/projects/gvsig-desktop/docs/devel/guia-para-documentar/el-formato-restructuredtext>`_  o en la `referencia de docUtils  <http://docutils.sourceforge.net/rst.html>`_)
36

  
37
docs
38
---------
39

  
40
Directorio con documentos realitivos al proyecto
41

  
42
org.gvsig.educa.batovi.activity
43
-----------------------------------
44

  
45
Scripts para generar una *actividad* de *sugar* con una personalización de gvSIG a partir de una instalción de gvSIG v2.0
46

  
47
org.gvsig.educa.batovi.app
48
-------------------------------
49

  
50
Plugins especiales para el proyecto Batoví (Personalización del UI, etc..)
51

  
52
org.gvsig.educa.batovi.mapviewer
53
-----------------------------------
54

  
55
Aplicación minimalista que permite instalar y visualizar *mapas temáticos*. Incluye scripts para empaquetar en forma de *actividad* de *sugar* 
56

  
57

  
58
Compilación
59
================
60

  
61
Para aquellos proyectos que contengan código. El resto contendrán un fichero *LEEME.txt* con las instrucciónes necesárias.
62

  
63
Desde el shell
64
----------------
65

  
66
Ejecute este comando::
67

  
68
    {proyecto}$ mvn clean install
69

  
70

  
71
Desde eclipse
72
--------------
73
Ver `Trabajar con un proyecto de la guía de desarrollador en gvSIG.org <https://gvsig.org/web/projects/gvsig-desktop/docs/devel/gvsig-devel-guide/2.0.0/trabajar-con-un-proyecto>`_
74

  
75
En algunos proyectos puede que sea necesario user el comando ``mvn eclipse:clean eclipse:eclipse`` e importar como *Standar/Import existing project...* en vez de cargar como *Maven Project*. Esto es debido a que, en algunas circunstancias, parece que el plugin de Maven del eclipse no prepara el *classpath* de forma correcta.
76

  
77

  
78
Empaquetado
79
===============
80

  
81
Dependiendo del proyecto es aplicable o no:
82

  
83
* El proyecto de *org.gvsig.edica.batovi.activity* es un empaquetado en si mismo.
84
* El proyecto de *org.gvsig.educa.batovi.app* contiene plugins y usa el mecanismo estándar de empaquetado de gvSIG.
85
* El proyecto de *org.gvsig.educa.batovi.mapviewer* contiene su empaquteador en *org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer.activity*
86

  
87
Versionado 
88
--------------
89

  
90
Para cambiar el número de versión de los plugins solo es necesario ajustar la etiqueta ``project/version`` del fichero *pom.xml* de los proyectos:
91

  
92
* *org.gvsig.educa.batovi.app*
93
* *org.gvsig.educa.batovi.mapviewer*
94

  
95
Los subproyectos heredarán el valor.
96

  
97
La política de versión es la estándar. Los cambios en los numeros son:
98

  
99
* tercer número: Arreglo de errores y mejoras menores. Sin cambios en el API. 
100
* segundo número: Arreglo de erroes y mejoras. Pueden haber cambios menores en el API. Los elementos marcados como *deprecated* en versiones anteriores pueden eliminarse. Sin cambios de arquitectura.
101
* primer número: Cambios mayores.
102

  
103
Crear un tag
104
------------------
105

  
106
TODO: usar el plugin *release* de maven
107

  
108
Usar el comando *svn copy*. El proceso podría ser:
109

  
110
#. Comprobar que no hay cambios en la copia local::
111
   
112
   svn up ; svn status
113

  
114
#. Comprobar que los proyecto compilan y pasan todas las baterías de test::
115

  
116
   mvn clean install
117

  
118
#. Actualizar el fichero *pom.xml* con la versión de tag (normalmente quitando el sufijo *-SNAPSHOT*)
119
#. Crear el directorio para el tag en el servidor::
120
    
121
   svn mkdir -m "Create {version} tag folder" https://devel.gvsig.org/svn/gvsig-educa/org.gvsig.educa.thematicmap.app/tag/{version}
122

  
123
#. Subir la copia local al directorio del tag en el servidor::
124

  
125
   svn copy -m "Create {version} tag" * https://devel.gvsig.org/svn/gvsig-educa/org.gvsig.educa.thematicmap.app/tag/{version}
126

  
127
#. Actualizar el *pom.xml* a la siguiente version (y añadirle el sufijo *-SNAPSHOT*)
128
#. Subir los cambios del *pom.xml*::
129

  
130
   svn commit -m "Set new version {version}-SNAPSHOT" pom.xml
131

  
132

  
133
i18n
134
======
135

  
136
Los ficheros de internacionalización se pueden encontrar en los directorios:
137

  
138
+ *org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources*
139

  
140
La internacionalización está basada en el mecanismo estándar de los *resource bundle*. Para añadir un nuevo idioma sólo es necesario añadir el fichero de propiedades en todos los directorio con el codigo de idioma adecuado.
141

  
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/LEEME.txt
1
===================================
2
gvSIG Educa Batoví: Visor de mapas
3
===================================
4

  
5
------------------------------------------------------------
6
Aplicación de visualización de mapas temáticos
7
------------------------------------------------------------
8

  
9
Descripción
10
==============
11

  
12
Este fichero es un índice del contenido de este directorio
13

  
14
Contenido
15
=========
16

  
17
REAME.txt/LEEME.txt
18
--------------------
19

  
20
Este fichero. Está en formato reStructureText. Para mas información ver el `portal de gvSIG <https://gvsig.org/web/projects/gvsig-desktop/docs/devel/guia-para-documentar/el-formato-restructuredtext>`_  o en la `referencia de docUtils  <http://docutils.sourceforge.net/rst.html>`_)
21

  
22

  
23
org.gvsig.educa.batovi.mapviewer
24
-----------------------------------
25

  
26
Directirio con los fuentes de la aplicación
27

  
28
org.gvsig.educa.batovi.mapviewer.activity
29
--------------------------------------------
30

  
31
Scripst apara la generación de una *activity* de *sugar*. Require tener compilada la aplicación `org.gvsig.educa.batovi.mapviewer`_ para generar el paquete.
32

  
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/log4j.xml
1
<?xml version="1.0" encoding="ISO-8859-1" ?>
2
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
3

  
4
<!--
5
Log4J configuration file for unit tests execution.
6
 -->
7
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
8

  
9
	<!-- Appender configuration to show logging messages through the console -->
10
	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
11
		<layout class="org.apache.log4j.PatternLayout">
12
			<param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%c{2}.%M()]\n  %m%n" />
13
		</layout>
14
	</appender>
15

  
16
	<appender name="LOGFILE" class="org.apache.log4j.RollingFileAppender">
17
		<param name="File" value="${user.home}/gvSIG/mapviewer.log" />
18
		<param name="MaxFileSize" value="2MB"/>
19
		<param name="MaxBackupIndex" value="3"/>
20
		<layout class="org.apache.log4j.PatternLayout">
21
			<param name="ConversionPattern" value="%d{dd MMM yyyy HH:mm:ss,SSS} %-5p [%c{2}.%M()]\n  %m%n" />
22
		</layout>
23

  
24
	</appender>
25

  
26
	<!--
27
	Activate logging messages of DEBUG level of higher only for the
28
	org.gvsig.tools packages.
29
	You can put full classes names or packages instead, to configure
30
	logging for all the classes and subpackages of the package.
31
	-->
32
	<category name="org.gvsig.tools">
33
		<priority value="WARNING" />
34
	</category>
35
	<category name="org.gvsig.educa">
36
		<priority value="INFO" />
37
	</category>
38

  
39
	<!--
40
	By default, show only logging messages of INFO level or higher,
41
	through the previously configured CONSOLE appender.
42
	-->
43
	<root>
44
		<priority value="INFO" />
45
		<appender-ref ref="CONSOLE" />
46
		<appender-ref ref="LOGFILE" />
47
	</root>
48
</log4j:configuration>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/mapviewer_es.properties
1

  
2
Add_a_ThematicMap_install_URL = A\u00F1adir URL de instalaci\u00F3n de mapas tem\u00E1ticos
3

  
4
Add_install_Thematic_Map_URL = A\u00F1adir URL de instalaci\u00F3n de mapas tem\u00E1ticos
5

  
6
CRS = CRS
7

  
8
Cancel = Cancelar
9

  
10
Close_Map = Cerrar mapa
11

  
12
Distance = Dist
13

  
14
Error_opening_installer_panel = Error abriendo el instalador
15

  
16
Exit = Salir
17

  
18
Input_the_url = Introduzca la URL
19

  
20
Install_ThematicMaps = Instalar mapas tem\u00E1ticos
21

  
22
Install_Thematic_Map = Instalar mapa tem\u00E1tico
23

  
24
Invalid_URL = URL invalida
25

  
26
Latitude_status = Lat
27

  
28
Longitude_status = Lon
29

  
30
No_maps_found_Select_this_folder_anyway = No hay mapas en el directorio. \u00BFEstablecerlo de todas formas?
31

  
32
Open_Thematic_map = Abrir mapa tem\u00E1tico
33

  
34
Pan = Navegaci\u00F3n
35

  
36
Problem_found_opening_map_see_log_for_details = Encontrados problemas al abrir el mapa (ver el log para m\u00E1s detalles)
37

  
38
Problem_found_setting_Thematic_Map_folder = Se ha encontrado un problema al establecer el directorio de mapas tem\u00E1ticos (ver log para m\u00E1s informaci\u00F3n)
39

  
40
Problems_found_getting_info_from_selected_layers = Problema al optener la informaci\u00F3n de las capas seleccionada (ver log para detalles)
41

  
42
Scale = Escala
43

  
44
Select_Thematic_Map_folder = Seleccionar directorio mapas tem\u00E1ticos
45

  
46
Select_a_Thematic_Map_folder_first = Primero seleccione un directorio de mapas tem\u00E1ticos
47

  
48
Select_a_layer_to_get_info = Seleccione una capa para optener la informaci\u00F3n
49

  
50
Select_folder = Seleccionar directorio
51

  
52
Show_Hide_Toc = Mostrar/Ocultar Toc
53

  
54
Thematic_Map_information = Informaci\u00F3n del mapa tem\u00E1tico
55

  
56
Thematic_Maps_availables = Mapas tem\u00E1ticos disponibles
57

  
58
Total = Total
59

  
60
Zoom = Zoom
61

  
62
Zoom_all = Zoom todo
63

  
64
area = \u00C1rea
65

  
66
gvSIG_Batovi_Map_Viewer = gvSIG Batov\u00ED: Visor de Mapas
67

  
68
infoByPoint = Informaci\u00F3n de un punto
69

  
70
measure = Medir
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/rule.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<svg
3
   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
   xmlns:cc="http://creativecommons.org/ns#"
5
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
   xmlns:svg="http://www.w3.org/2000/svg"
7
   xmlns="http://www.w3.org/2000/svg"
8
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
   enable-background="new 0 0 55 54.696"
11
   height="54.696px"
12
   version="1.1"
13
   viewBox="0 0 55 54.696"
14
   width="55px"
15
   x="0px"
16
   xml:space="preserve"
17
   y="0px"
18
   id="svg3354"
19
   inkscape:version="0.48.2 r9819"
20
   sodipodi:docname="rule.svg"><metadata
21
     id="metadata3365"><rdf:RDF><cc:Work
22
         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
23
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
24
     id="defs3363">
25
	
26
	
27
</defs><sodipodi:namedview
28
     pagecolor="#ffffff"
29
     bordercolor="#666666"
30
     borderopacity="1"
31
     objecttolerance="10"
32
     gridtolerance="10"
33
     guidetolerance="10"
34
     inkscape:pageopacity="0"
35
     inkscape:pageshadow="2"
36
     inkscape:window-width="1279"
37
     inkscape:window-height="508"
38
     id="namedview3361"
39
     showgrid="false"
40
     inkscape:zoom="4.3147582"
41
     inkscape:cx="12.338748"
42
     inkscape:cy="32.086097"
43
     inkscape:window-x="7"
44
     inkscape:window-y="24"
45
     inkscape:window-maximized="0"
46
     inkscape:current-layer="svg3354" /><g
47
     id="g2992"
48
     transform="translate(0.125,5.2851624)"><rect
49
       transform="matrix(0,-1,1,0,0,0)"
50
       display="inline"
51
       height="45"
52
       width="25.097675"
53
       x="-34.611675"
54
       y="4.875"
55
       id="rect3357"
56
       style="fill:#ffffff;display:inline" /><rect
57
       transform="matrix(0,-1,1,0,0,0)"
58
       display="inline"
59
       height="35.999001"
60
       width="18.96258"
61
       x="-31.544479"
62
       y="9.2089996"
63
       id="rect3359"
64
       style="fill:#c6c8ca;display:inline" /><rect
65
       y="13.439749"
66
       x="14.667347"
67
       height="8.7840214"
68
       width="0.49164295"
69
       id="rect4141"
70
       style="fill:#ffffff;fill-opacity:0;stroke:#faf7f7;stroke-width:1.78885436;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /><rect
71
       y="13.657114"
72
       x="23.079905"
73
       height="13.176031"
74
       width="0.49164295"
75
       id="rect4141-4"
76
       style="fill:#ffffff;fill-opacity:0;stroke:#faf7f7;stroke-width:2.19089031;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /><rect
77
       y="13.439749"
78
       x="31.49246"
79
       height="8.7840214"
80
       width="0.49164295"
81
       id="rect4141-5"
82
       style="fill:#ffffff;fill-opacity:0;stroke:#faf7f7;stroke-width:1.78885436;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /><rect
83
       y="13.657114"
84
       x="39.905018"
85
       height="13.176031"
86
       width="0.49164295"
87
       id="rect4141-6"
88
       style="fill:#ffffff;fill-opacity:0;stroke:#faf7f7;stroke-width:2.19089031;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /></g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/area.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<svg
3
   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
   xmlns:cc="http://creativecommons.org/ns#"
5
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
   xmlns:svg="http://www.w3.org/2000/svg"
7
   xmlns="http://www.w3.org/2000/svg"
8
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
   enable-background="new 0 0 55 54.696"
11
   height="54.696px"
12
   version="1.1"
13
   viewBox="0 0 55 54.696"
14
   width="55px"
15
   x="0px"
16
   xml:space="preserve"
17
   y="0px"
18
   id="svg3354"
19
   inkscape:version="0.48.2 r9819"
20
   sodipodi:docname="area.svg"><metadata
21
     id="metadata3365"><rdf:RDF><cc:Work
22
         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
23
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
24
     id="defs3363" /><sodipodi:namedview
25
     pagecolor="#ffffff"
26
     bordercolor="#666666"
27
     borderopacity="1"
28
     objecttolerance="10"
29
     gridtolerance="10"
30
     guidetolerance="10"
31
     inkscape:pageopacity="0"
32
     inkscape:pageshadow="2"
33
     inkscape:window-width="1279"
34
     inkscape:window-height="508"
35
     id="namedview3361"
36
     showgrid="false"
37
     inkscape:zoom="12.203979"
38
     inkscape:cx="24.220119"
39
     inkscape:cy="15.757068"
40
     inkscape:window-x="0"
41
     inkscape:window-y="24"
42
     inkscape:window-maximized="0"
43
     inkscape:current-layer="svg3354" /><g
44
     display="block"
45
     id="format-columns-single"
46
     transform="matrix(0,-0.64161946,0.9471939,0,1.5121113,38.520974)"
47
     style="display:block">
48
	<rect
49
   display="inline"
50
   height="45"
51
   width="35.667999"
52
   x="9.5410004"
53
   y="4.848"
54
   id="rect3357"
55
   style="fill:#ffffff;display:inline" />
56
	<rect
57
   display="inline"
58
   height="35.999001"
59
   width="26.948999"
60
   x="13.9"
61
   y="9.1820002"
62
   id="rect3359"
63
   style="fill:#c6c8ca;display:inline" />
64
</g><rect
65
     style="fill:#ffffff;fill-opacity:0;stroke:#faf7f7;stroke-width:1.59360957;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
66
     id="rect4141"
67
     width="0.49164295"
68
     height="7.0272169"
69
     x="14.667347"
70
     y="13.126872" /><rect
71
     style="fill:#ffffff;fill-opacity:0;stroke:#faf7f7;stroke-width:1.95176518;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
72
     id="rect4141-4"
73
     width="0.49164295"
74
     height="10.540825"
75
     x="23.079905"
76
     y="13.300765" /><rect
77
     style="fill:#ffffff;fill-opacity:0;stroke:#faf7f7;stroke-width:1.59360957;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
78
     id="rect4141-5"
79
     width="0.49164295"
80
     height="7.0272169"
81
     x="31.49246"
82
     y="13.126872" /><rect
83
     style="fill:#ffffff;fill-opacity:0;stroke:#faf7f7;stroke-width:1.95176518;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
84
     id="rect4141-6"
85
     width="0.49164295"
86
     height="10.540825"
87
     x="39.905018"
88
     y="13.300765" /><rect
89
     style="fill:#999999;fill-opacity:0;stroke:#985f5f;stroke-width:3.44543457;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:3.79999995;stroke-opacity:1;stroke-dasharray:3.44543467, 10.33630399;stroke-dashoffset:0"
90
     id="rect4194"
91
     width="43.510403"
92
     height="39.243874"
93
     x="4.8344884"
94
     y="8.2357397" /></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/exit.svg
1
<?xml version="1.0" ?><!DOCTYPE svg  PUBLIC '-//W3C//DTD SVG 1.1//EN'  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
2
	<!ENTITY stroke_color "#010101">
3
	<!ENTITY fill_color "#FFFFFF">
4
]><svg enable-background="new 0 0 55 55" height="55px" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="activity-stop">
5
	<path d="M36.822,5H18.181L5.002,18.182V36.82L18.181,50h18.642l13.176-13.18V18.182L36.822,5z    M35.75,35.414h-15.5v-15.5h15.5V35.414z" display="inline" fill="&fill_color;"/>
6
</g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/show-hide-toc.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<svg
3
   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
   xmlns:cc="http://creativecommons.org/ns#"
5
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
   xmlns:svg="http://www.w3.org/2000/svg"
7
   xmlns="http://www.w3.org/2000/svg"
8
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
   enable-background="new 0 0 55 54.696"
11
   height="54.696px"
12
   version="1.1"
13
   viewBox="0 0 55 54.696"
14
   width="55px"
15
   x="0px"
16
   xml:space="preserve"
17
   y="0px"
18
   id="svg3056"
19
   inkscape:version="0.48.2 r9819"
20
   sodipodi:docname="s-h-toc2.svg"><metadata
21
     id="metadata3069"><rdf:RDF><cc:Work
22
         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
23
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
24
     id="defs3067">
25
	
26
	
27
	
28
</defs><sodipodi:namedview
29
     pagecolor="#ffffff"
30
     bordercolor="#666666"
31
     borderopacity="1"
32
     objecttolerance="10"
33
     gridtolerance="10"
34
     guidetolerance="10"
35
     inkscape:pageopacity="0"
36
     inkscape:pageshadow="2"
37
     inkscape:window-width="1440"
38
     inkscape:window-height="876"
39
     id="namedview3065"
40
     showgrid="false"
41
     inkscape:zoom="12.203979"
42
     inkscape:cx="13.242355"
43
     inkscape:cy="27.348"
44
     inkscape:window-x="0"
45
     inkscape:window-y="24"
46
     inkscape:window-maximized="1"
47
     inkscape:current-layer="svg3056" /><rect
48
     style="fill:#ffffff;display:inline"
49
     id="rect3059"
50
     y="4.848"
51
     x="9.5410004"
52
     width="35.667999"
53
     height="45"
54
     display="inline" /><rect
55
     style="fill:#c6c8ca;display:inline"
56
     id="rect3061"
57
     y="9.1820002"
58
     x="11.866573"
59
     width="11.243834"
60
     height="36"
61
     display="inline" /><rect
62
     style="fill:#c6c8ca;display:inline"
63
     id="rect3063"
64
     y="9.1820002"
65
     x="25.306433"
66
     width="17.26849"
67
     height="36"
68
     display="inline" /><polyline
69
     transform="matrix(1.0182338,1.4376488,-1.0182338,1.4376488,26.47424,-39.453062)"
70
     points="23.431,29.03 17.874,29.03 17.874,23.472   "
71
     id="polyline3235"
72
     style="fill:none;stroke:#ffffff;stroke-width:2.25" /><polyline
73
     transform="matrix(1.0182338,1.4376488,-1.0182338,1.4376488,22.72006,-39.453062)"
74
     points="23.499,17.85 29.057,17.85 29.055,23.408   "
75
     id="polyline3237"
76
     style="fill:none;stroke:#ffffff;stroke-width:2.25" /></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/install-map.svg
1
<?xml version="1.0" ?><!DOCTYPE svg  PUBLIC '-//W3C//DTD SVG 1.1//EN'  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
2
	<!ENTITY stroke_color "#010101">
3
	<!ENTITY fill_color "#FFFFFF">
4
]><svg enable-background="new 0 0 55.125 55" height="55px" version="1.1" viewBox="0 0 55.125 55" width="55.125px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="list-add">
5
	<path d="M43.467,11.644c-8.789-8.79-23.035-8.786-31.818-0.002   c-8.791,8.791-8.792,23.033-0.002,31.823c8.79,8.789,23.031,8.788,31.822-0.003C52.252,34.678,52.257,20.433,43.467,11.644z    M30.768,38.767c-0.002,1.774-1.438,3.216-3.214,3.214c-0.889,0.001-1.693-0.359-2.275-0.941c-0.582-0.581-0.94-1.385-0.94-2.27   l0-8.146h-8.146c-0.886-0.001-1.689-0.359-2.271-0.94c-0.582-0.583-0.942-1.388-0.942-2.276c0-1.773,1.439-3.213,3.217-3.211h8.143   v-8.143c-0.003-1.776,1.438-3.217,3.212-3.217c1.774,0,3.218,1.438,3.215,3.215l0.001,8.145l8.146,0.001   c1.775-0.005,3.212,1.438,3.213,3.213c0.002,1.775-1.441,3.214-3.215,3.215h-8.143V38.767z" display="inline" fill="&fill_color;"/>
6
</g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/rule-cursor.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<svg
3
   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
   xmlns:cc="http://creativecommons.org/ns#"
5
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
   xmlns:svg="http://www.w3.org/2000/svg"
7
   xmlns="http://www.w3.org/2000/svg"
8
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
   enable-background="new 0 0 55 54.696"
11
   height="54.696px"
12
   version="1.1"
13
   viewBox="0 0 55 54.696"
14
   width="55px"
15
   x="0px"
16
   xml:space="preserve"
17
   y="0px"
18
   id="svg2"
19
   inkscape:version="0.48.2 r9819"
20
   sodipodi:docname="area-cursor.svg"><metadata
21
   id="metadata17"><rdf:RDF><cc:Work
22
       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
23
         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
24
   id="defs15">
25
	
26

  
27
		
28
		
29
		
30
	</defs><sodipodi:namedview
31
   pagecolor="#ffffff"
32
   bordercolor="#666666"
33
   borderopacity="1"
34
   objecttolerance="10"
35
   gridtolerance="10"
36
   guidetolerance="10"
37
   inkscape:pageopacity="0"
38
   inkscape:pageshadow="2"
39
   inkscape:window-width="1121"
40
   inkscape:window-height="706"
41
   id="namedview13"
42
   showgrid="false"
43
   inkscape:zoom="6.1019895"
44
   inkscape:cx="28.752362"
45
   inkscape:cy="31.185352"
46
   inkscape:window-x="229"
47
   inkscape:window-y="113"
48
   inkscape:window-maximized="0"
49
   inkscape:current-layer="svg2" /><text
50
   xml:space="preserve"
51
   style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Andale Mono;-inkscape-font-specification:Andale Mono"
52
   x="20.15736"
53
   y="30.605495"
54
   id="text3773"
55
   sodipodi:linespacing="125%"><tspan
56
     sodipodi:role="line"
57
     id="tspan3775" /></text>
58

  
59

  
60
<g
61
   id="g3956"
62
   transform="translate(7.2478872,7.310403)"><line
63
     style="fill:none;stroke:#000000;stroke-width:3.5;stroke-opacity:1"
64
     id="line11"
65
     y2="8.0516615"
66
     y1="8.0516615"
67
     x2="14.318187"
68
     x1="2.6511855" /><line
69
     style="fill:none;stroke:#000000;stroke-width:3.5;stroke-opacity:1"
70
     id="line13"
71
     y2="13.887663"
72
     y1="2.2206612"
73
     x2="8.4831877"
74
     x1="8.4831877" /></g><rect
75
   style="fill:none;display:inline;stroke:#000000;stroke-opacity:1"
76
   id="rect3359"
77
   y="15.546313"
78
   x="-43.288681"
79
   width="14.221935"
80
   height="26.99925"
81
   display="inline"
82
   transform="matrix(0,-1,1,0,0,0)" /><rect
83
   style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.34164071000000007;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
84
   id="rect4141"
85
   width="0.36873221"
86
   height="6.588016"
87
   x="19.640074"
88
   y="29.710133" /><rect
89
   style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.64316773000000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
90
   id="rect4141-4"
91
   width="0.36873221"
92
   height="9.8820229"
93
   x="25.949492"
94
   y="29.873156" /><rect
95
   style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.34164071000000007;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
96
   id="rect4141-5"
97
   width="0.36873221"
98
   height="6.588016"
99
   x="32.258907"
100
   y="29.710133" /><rect
101
   style="fill:none;fill-opacity:0;stroke:#000000;stroke-width:1.64316773000000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
102
   id="rect4141-6"
103
   width="0.36873221"
104
   height="9.8820229"
105
   x="38.568329"
106
   y="29.873156" /></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/area-cursor.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<svg
3
   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
   xmlns:cc="http://creativecommons.org/ns#"
5
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
   xmlns:svg="http://www.w3.org/2000/svg"
7
   xmlns="http://www.w3.org/2000/svg"
8
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
   enable-background="new 0 0 55 54.696"
11
   height="54.696px"
12
   version="1.1"
13
   viewBox="0 0 55 54.696"
14
   width="55px"
15
   x="0px"
16
   xml:space="preserve"
17
   y="0px"
18
   id="svg2"
19
   inkscape:version="0.48.2 r9819"
20
   sodipodi:docname="rule-cursor.svg"><metadata
21
   id="metadata17"><rdf:RDF><cc:Work
22
       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
23
         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
24
   id="defs15">
25
	
26

  
27
		
28
		
29
		
30
	</defs><sodipodi:namedview
31
   pagecolor="#ffffff"
32
   bordercolor="#666666"
33
   borderopacity="1"
34
   objecttolerance="10"
35
   gridtolerance="10"
36
   guidetolerance="10"
37
   inkscape:pageopacity="0"
38
   inkscape:pageshadow="2"
39
   inkscape:window-width="1121"
40
   inkscape:window-height="706"
41
   id="namedview13"
42
   showgrid="false"
43
   inkscape:zoom="6.1019895"
44
   inkscape:cx="28.752362"
45
   inkscape:cy="31.185352"
46
   inkscape:window-x="229"
47
   inkscape:window-y="113"
48
   inkscape:window-maximized="0"
49
   inkscape:current-layer="svg2" /><text
50
   xml:space="preserve"
51
   style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Andale Mono;-inkscape-font-specification:Andale Mono"
52
   x="20.15736"
53
   y="30.605495"
54
   id="text3773"
55
   sodipodi:linespacing="125%"><tspan
56
     sodipodi:role="line"
57
     id="tspan3775" /></text>
58

  
59

  
60
<g
61
   id="g3956"
62
   transform="translate(7.2478872,7.310403)"><line
63
     style="fill:none;stroke:#000000;stroke-width:3.5;stroke-opacity:1"
64
     id="line11"
65
     y2="8.0516615"
66
     y1="8.0516615"
67
     x2="14.318187"
68
     x1="2.6511855" /><line
69
     style="fill:none;stroke:#000000;stroke-width:3.5;stroke-opacity:1"
70
     id="line13"
71
     y2="13.887663"
72
     y1="2.2206612"
73
     x2="8.4831877"
74
     x1="8.4831877" /></g><rect
75
   style="fill:none;display:inline;stroke:#000000;stroke-opacity:1"
76
   id="rect3359"
77
   y="15.546313"
78
   x="-43.288681"
79
   width="14.221935"
80
   height="26.99925"
81
   display="inline"
82
   transform="matrix(0,-1,1,0,0,0)" /><rect
83
   style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.34164071000000007;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
84
   id="rect4141"
85
   width="0.36873221"
86
   height="6.588016"
87
   x="19.640074"
88
   y="29.710133" /><rect
89
   style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.64316773000000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
90
   id="rect4141-4"
91
   width="0.36873221"
92
   height="9.8820229"
93
   x="25.949492"
94
   y="29.873156" /><rect
95
   style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:1.34164071000000007;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
96
   id="rect4141-5"
97
   width="0.36873221"
98
   height="6.588016"
99
   x="32.258907"
100
   y="29.710133" /><rect
101
   style="fill:none;fill-opacity:0;stroke:#000000;stroke-width:1.64316773000000005;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"
102
   id="rect4141-6"
103
   width="0.36873221"
104
   height="9.8820229"
105
   x="38.568329"
106
   y="29.873156" /><rect
107
   style="fill:none;stroke:#000000;stroke-width:3.01300001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:12.2;stroke-opacity:1;stroke-dasharray:3.01300001,12.05200005;stroke-dashoffset:0"
108
   id="rect3857"
109
   width="44.411743"
110
   height="42.772934"
111
   x="5.4080725"
112
   y="5.6955872" /></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/zoom.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<svg
3
   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
   xmlns:cc="http://creativecommons.org/ns#"
5
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
   xmlns:svg="http://www.w3.org/2000/svg"
7
   xmlns="http://www.w3.org/2000/svg"
8
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
   enable-background="new 0 0 55 54.696"
11
   height="54.696px"
12
   version="1.1"
13
   viewBox="0 0 55 54.696"
14
   width="55px"
15
   x="0px"
16
   xml:space="preserve"
17
   y="0px"
18
   id="svg3905"
19
   inkscape:version="0.48.2 r9819"
20
   sodipodi:docname="zoom-in.svg"><metadata
21
     id="metadata3922"><rdf:RDF><cc:Work
22
         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
23
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
24
     id="defs3920">
25
	
26

  
27
		
28
		
29
		
30
		
31
	</defs><sodipodi:namedview
32
     pagecolor="#ffffff"
33
     bordercolor="#666666"
34
     borderopacity="1"
35
     objecttolerance="10"
36
     gridtolerance="10"
37
     guidetolerance="10"
38
     inkscape:pageopacity="0"
39
     inkscape:pageshadow="2"
40
     inkscape:window-width="852"
41
     inkscape:window-height="480"
42
     id="namedview3918"
43
     showgrid="false"
44
     inkscape:zoom="4.314758"
45
     inkscape:cx="27.5"
46
     inkscape:cy="27.348"
47
     inkscape:window-x="0"
48
     inkscape:window-y="24"
49
     inkscape:window-maximized="0"
50
     inkscape:current-layer="svg3905" /><path
51
     d="m 9.875,23.572 c 0,7.569 6.131,13.705 13.702,13.705 7.562,0 13.694,-6.136 13.694,-13.705 0,-7.564 -6.132,-13.698 -13.694,-13.698 -7.571,0 -13.702,6.134 -13.702,13.698 z"
52
     id="path3910"
53
     inkscape:connector-curvature="0"
54
     style="fill:#808284;stroke:#ffffff;stroke-width:3.5" /><line
55
     x1="33.265999"
56
     x2="45.047001"
57
     y1="33.262001"
58
     y2="45.044998"
59
     id="line3912"
60
     style="fill:none;stroke:#ffffff;stroke-width:3.5" /></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/zoom-in.svg
1
<?xml version="1.0" ?><!DOCTYPE svg  PUBLIC '-//W3C//DTD SVG 1.1//EN'  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 55 54.696" height="54.696px" version="1.1" viewBox="0 0 55 54.696" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="zoom-in">
2
	<g display="inline">
3
		<path d="M9.875,23.572c0,7.569,6.131,13.705,13.702,13.705    c7.562,0,13.694-6.136,13.694-13.705c0-7.564-6.132-13.698-13.694-13.698C16.006,9.874,9.875,16.008,9.875,23.572z" fill="#808284" stroke="#FFFFFF" stroke-width="3.5"/>
4
		<line fill="none" stroke="#FFFFFF" stroke-width="3.5" x1="33.266" x2="45.047" y1="33.262" y2="45.045"/>
5
		<line fill="none" stroke="#FFFFFF" stroke-width="3.5" x1="17.484" x2="29.151" y1="23.348" y2="23.348"/>
6
		<line fill="none" stroke="#FFFFFF" stroke-width="3.5" x1="23.316" x2="23.316" y1="17.517" y2="29.184"/>
7
	</g>
8
</g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/zoom-out.svg
1
<?xml version="1.0" ?><!DOCTYPE svg  PUBLIC '-//W3C//DTD SVG 1.1//EN'  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 55 54.696" height="54.696px" version="1.1" viewBox="0 0 55 54.696" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="zoom-out">
2
	<g display="inline">
3
		<path d="M9.875,23.572c0,7.569,6.131,13.705,13.702,13.705    c7.562,0,13.694-6.136,13.694-13.705c0-7.564-6.132-13.698-13.694-13.698C16.006,9.874,9.875,16.008,9.875,23.572z" fill="#808284" stroke="#FFFFFF" stroke-width="3.5"/>
4
		<line fill="none" stroke="#FFFFFF" stroke-width="3.5" x1="33.266" x2="45.047" y1="33.262" y2="45.045"/>
5
		<line fill="none" stroke="#FFFFFF" stroke-width="3.5" x1="17.484" x2="29.151" y1="23.348" y2="23.348"/>
6
	</g>
7
</g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/zoom-all.svg
1
<?xml version="1.0" ?><!DOCTYPE svg  PUBLIC '-//W3C//DTD SVG 1.1//EN'  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'><svg enable-background="new 0 0 55 54.696" height="54.696px" version="1.1" viewBox="0 0 55 54.696" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="zoom-best-fit">
2
	<g display="inline">
3
		<path d="M9.875,23.546c0,7.569,6.131,13.704,13.702,13.704    c7.562,0,13.694-6.135,13.694-13.704c0-7.564-6.132-13.698-13.694-13.698C16.006,9.848,9.875,15.982,9.875,23.546z" fill="#808284" stroke="#FFFFFF" stroke-width="3.5"/>
4
		<line fill="none" stroke="#FFFFFF" stroke-width="3.5" x1="33.266" x2="45.047" y1="33.262" y2="45.045"/>
5
		<polyline fill="none" points="23.431,29.03 17.874,29.03 17.874,23.472   " stroke="#FFFFFF" stroke-width="2.25"/>
6
		<polyline fill="none" points="23.499,17.85 29.057,17.85 29.055,23.408   " stroke="#FFFFFF" stroke-width="2.25"/>
7
	</g>
8
</g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/info.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<svg
3
   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
   xmlns:cc="http://creativecommons.org/ns#"
5
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
   xmlns:svg="http://www.w3.org/2000/svg"
7
   xmlns="http://www.w3.org/2000/svg"
8
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
   enable-background="new 0 0 55 54.696"
11
   height="54.696px"
12
   version="1.1"
13
   viewBox="0 0 55 54.696"
14
   width="55px"
15
   x="0px"
16
   xml:space="preserve"
17
   y="0px"
18
   id="svg2"
19
   inkscape:version="0.48.2 r9819"
20
   sodipodi:docname="info.svg"><metadata
21
   id="metadata17"><rdf:RDF><cc:Work
22
       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
23
         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
24
   id="defs15">
25
	
26

  
27
		
28
		
29
		
30
	</defs><sodipodi:namedview
31
   pagecolor="#ffffff"
32
   bordercolor="#666666"
33
   borderopacity="1"
34
   objecttolerance="10"
35
   gridtolerance="10"
36
   guidetolerance="10"
37
   inkscape:pageopacity="0"
38
   inkscape:pageshadow="2"
39
   inkscape:window-width="1440"
40
   inkscape:window-height="876"
41
   id="namedview13"
42
   showgrid="false"
43
   inkscape:zoom="12.203979"
44
   inkscape:cx="19.635464"
45
   inkscape:cy="31.185352"
46
   inkscape:window-x="0"
47
   inkscape:window-y="24"
48
   inkscape:window-maximized="1"
49
   inkscape:current-layer="svg2" /><path
50
   d="m 9.875,23.572 c 0,7.569 6.131,13.705 13.702,13.705 7.562,0 13.694,-6.136 13.694,-13.705 0,-7.564 -6.132,-13.698 -13.694,-13.698 -7.571,0 -13.702,6.134 -13.702,13.698 z"
51
   id="path7"
52
   inkscape:connector-curvature="0"
53
   style="fill:#808284;stroke:#ffffff;stroke-width:3.5" /><line
54
   x1="33.265999"
55
   x2="45.047001"
56
   y1="33.262001"
57
   y2="45.044998"
58
   id="line9"
59
   style="fill:none;stroke:#ffffff;stroke-width:3.5" /><text
60
   xml:space="preserve"
61
   style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Andale Mono;-inkscape-font-specification:Andale Mono"
62
   x="20.15736"
63
   y="30.605495"
64
   id="text3773"
65
   sodipodi:linespacing="125%"><tspan
66
     sodipodi:role="line"
67
     id="tspan3775" /></text>
68

  
69
<g
70
   style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Andale Mono;-inkscape-font-specification:Andale Mono"
71
   id="text3777"
72
   transform="matrix(2.1701325,0,0,0.94991617,-28.717804,1.2012481)"><path
73
     d="m 24.073509,14.168362 c 0.401032,1.9e-5 0.742829,0.145852 1.025391,0.4375 0.282541,0.282571 0.423817,0.624367 0.423828,1.02539 -1.1e-5,0.419289 -0.141287,0.7702 -0.423828,1.052735 -0.273448,0.282569 -0.615244,0.423844 -1.025391,0.423828 -0.373707,1.6e-5 -0.706389,-0.145817 -0.998047,-0.4375 -0.28256,-0.300764 -0.423836,-0.647118 -0.423828,-1.039063 -8e-6,-0.391908 0.141268,-0.733705 0.423828,-1.02539 0.291658,-0.291648 0.62434,-0.437481 0.998047,-0.4375 m 1.039063,19.632812 -2.132813,0 0,-12.40039 c 0.01706,-0.619953 0.02396,-1.24008 0.0324,-1.860189 l 2.100409,0.01449 0,14.246094"
74
     id="path3782"
75
     inkscape:connector-curvature="0"
76
     sodipodi:nodetypes="ccccccccccccccc"
77
     style="fill:#ffffff" /></g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/zoom-cursor.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<svg
3
   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
   xmlns:cc="http://creativecommons.org/ns#"
5
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
   xmlns:svg="http://www.w3.org/2000/svg"
7
   xmlns="http://www.w3.org/2000/svg"
8
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
   enable-background="new 0 0 55 54.696"
11
   height="54.696px"
12
   version="1.1"
13
   viewBox="0 0 55 54.696"
14
   width="55px"
15
   x="0px"
16
   xml:space="preserve"
17
   y="0px"
18
   id="svg2"
19
   inkscape:version="0.48.2 r9819"
20
   sodipodi:docname="zoom-cursor.svg"><metadata
21
     id="metadata19"><rdf:RDF><cc:Work
22
         rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
23
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
24
     id="defs17">
25
	
26

  
27
		
28
		
29
		
30
		
31
	</defs><sodipodi:namedview
32
     pagecolor="#ffffff"
33
     bordercolor="#666666"
34
     borderopacity="1"
35
     objecttolerance="10"
36
     gridtolerance="10"
37
     guidetolerance="10"
38
     inkscape:pageopacity="0"
39
     inkscape:pageshadow="2"
40
     inkscape:window-width="1274"
41
     inkscape:window-height="523"
42
     id="namedview15"
43
     showgrid="false"
44
     inkscape:zoom="5.9967823"
45
     inkscape:cx="27.5"
46
     inkscape:cy="27.348"
47
     inkscape:window-x="0"
48
     inkscape:window-y="24"
49
     inkscape:window-maximized="0"
50
     inkscape:current-layer="svg2" /><g
51
     id="g3952"
52
     transform="matrix(0.75,0,0,0.75,12.86525,12.864875)"><path
53
       style="fill:#808284;fill-opacity:0.33193282;stroke:#0a0a0a;stroke-width:3.5;stroke-opacity:1"
54
       inkscape:connector-curvature="0"
55
       id="path7"
56
       d="m 9.875,23.572 c 0,7.569 6.131,13.705 13.702,13.705 7.562,0 13.694,-6.136 13.694,-13.705 0,-7.564 -6.132,-13.698 -13.694,-13.698 -7.571,0 -13.702,6.134 -13.702,13.698 z" /><line
57
       style="fill:none;stroke:#000000;stroke-width:3.5;stroke-opacity:1"
58
       id="line9"
59
       y2="45.044998"
60
       y1="33.262001"
61
       x2="45.047001"
62
       x1="33.265999" /></g><g
63
     id="g3956"
64
     transform="translate(6,6)"><line
65
       style="fill:none;stroke:#000000;stroke-width:3.5;stroke-opacity:1"
66
       id="line11"
67
       y2="8.0516615"
68
       y1="8.0516615"
69
       x2="14.318187"
70
       x1="2.6511855" /><line
71
       style="fill:none;stroke:#000000;stroke-width:3.5;stroke-opacity:1"
72
       id="line13"
73
       y2="13.887663"
74
       y1="2.2206612"
75
       x2="8.4831877"
76
       x1="8.4831877" /></g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/open.svg
1
<?xml version="1.0" ?><!DOCTYPE svg  PUBLIC '-//W3C//DTD SVG 1.1//EN'  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
2
	<!ENTITY stroke_color "#010101">
3
	<!ENTITY fill_color "#FFFFFF">
4
]><svg enable-background="new 0 0 55 55" height="55px" version="1.1" viewBox="0 0 55 55" width="55px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="go-next">
5
	<path d="M27.497,50.004C39.927,50.004,50,39.937,50,27.508C50,15.076,39.927,4.997,27.497,4.997   C15.071,4.997,5,15.076,5,27.508C5,39.937,15.071,50.004,27.497,50.004z M20.733,17.551l19.629,9.965L20.733,37.758V17.551z" fill="&fill_color;"/>
6
</g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/close.svg
1
<?xml version="1.0" ?><!DOCTYPE svg  PUBLIC '-//W3C//DTD SVG 1.1//EN'  'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd' [
2
	<!ENTITY stroke_color "#010101">
3
	<!ENTITY fill_color "#FFFFFF">
4
]><svg enable-background="new 0 0 55.125 55" height="55px" version="1.1" viewBox="0 0 55.125 55" width="55.125px" x="0px" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" y="0px"><g display="block" id="dialog-cancel">
5
	<path d="M27.557,5.053c-12.43,0-22.5,10.076-22.5,22.497c0,12.432,10.07,22.503,22.5,22.503   c12.431,0,22.5-10.071,22.5-22.503C50.057,15.129,39.987,5.053,27.557,5.053z M37.756,33.212c1.254,1.256,1.257,3.291,0,4.545   c-0.628,0.629-1.451,0.943-2.274,0.943c-0.822,0-1.644-0.314-2.27-0.94l-5.76-5.761l-5.76,5.761   c-0.627,0.626-1.449,0.94-2.271,0.94c-0.823,0-1.647-0.314-2.275-0.943c-1.254-1.254-1.254-3.289,0.004-4.545l5.758-5.758   l-5.758-5.758c-1.258-1.254-1.258-3.292-0.004-4.546c1.255-1.254,3.292-1.259,4.546,0l5.76,5.759l5.76-5.759   c1.252-1.259,3.288-1.254,4.544,0c1.257,1.254,1.254,3.292,0,4.546l-5.758,5.758L37.756,33.212z" display="inline" fill="&fill_color;"/>
6
</g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/images/src/info-cursor.svg
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<svg
3
   xmlns:dc="http://purl.org/dc/elements/1.1/"
4
   xmlns:cc="http://creativecommons.org/ns#"
5
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
6
   xmlns:svg="http://www.w3.org/2000/svg"
7
   xmlns="http://www.w3.org/2000/svg"
8
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
9
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
10
   enable-background="new 0 0 55 54.696"
11
   height="54.696px"
12
   version="1.1"
13
   viewBox="0 0 55 54.696"
14
   width="55px"
15
   x="0px"
16
   xml:space="preserve"
17
   y="0px"
18
   id="svg2"
19
   inkscape:version="0.48.2 r9819"
20
   sodipodi:docname="info-cursor.svg"><metadata
21
   id="metadata17"><rdf:RDF><cc:Work
22
       rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
23
         rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
24
   id="defs15">
25
	
26

  
27
		
28
		
29
		
30
	</defs><sodipodi:namedview
31
   pagecolor="#ffffff"
32
   bordercolor="#666666"
33
   borderopacity="1"
34
   objecttolerance="10"
35
   gridtolerance="10"
36
   guidetolerance="10"
37
   inkscape:pageopacity="0"
38
   inkscape:pageshadow="2"
39
   inkscape:window-width="1121"
40
   inkscape:window-height="706"
41
   id="namedview13"
42
   showgrid="false"
43
   inkscape:zoom="6.1019895"
44
   inkscape:cx="28.752362"
45
   inkscape:cy="31.185352"
46
   inkscape:window-x="229"
47
   inkscape:window-y="113"
48
   inkscape:window-maximized="0"
49
   inkscape:current-layer="svg2" /><text
50
   xml:space="preserve"
51
   style="font-size:18px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Andale Mono;-inkscape-font-specification:Andale Mono"
52
   x="20.15736"
53
   y="30.605495"
54
   id="text3773"
55
   sodipodi:linespacing="125%"><tspan
56
     sodipodi:role="line"
57
     id="tspan3775" /></text>
58

  
59

  
60
<path
61
   d="m 20.2715,30.543875 c 0,5.67675 4.59825,10.27875 10.2765,10.27875 5.6715,0 10.2705,-4.602 10.2705,-10.27875 0,-5.673 -4.599,-10.2735 -10.2705,-10.2735 -5.67825,0 -10.2765,4.6005 -10.2765,10.2735 z"
62
   id="path7"
63
   inkscape:connector-curvature="0"
64
   style="fill:#ffffff;fill-opacity:0;stroke:#000000;stroke-width:2.62500000000000000;stroke-opacity:1" /><line
65
   x1="37.814751"
66
   x2="46.650501"
67
   y1="37.811375"
68
   y2="46.648624"
69
   id="line9"
70
   style="fill:none;stroke:#030303;stroke-width:2.625;stroke-opacity:1" /><path
71
   style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#0b0b0b;fill-opacity:1;stroke:none;font-family:Andale Mono;-inkscape-font-specification:Andale Mono"
72
   sodipodi:nodetypes="ccccccccccccccc"
73
   inkscape:connector-curvature="0"
74
   id="path3782"
75
   d="m 30.508925,23.859878 c 0.65272,1.4e-5 1.209028,0.10391 1.668926,0.311692 0.459864,0.201313 0.689804,0.444822 0.689822,0.730525 -1.8e-5,0.298718 -0.229958,0.54872 -0.689822,0.750008 -0.445064,0.201312 -1.001371,0.301962 -1.668926,0.30195 -0.608245,1.2e-5 -1.149718,-0.103885 -1.624421,-0.311691 -0.459894,-0.214275 -0.689835,-0.461031 -0.689822,-0.740267 -1.3e-5,-0.27921 0.229928,-0.522718 0.689822,-0.730525 0.474703,-0.207782 1.016176,-0.311678 1.624421,-0.311692 m 1.691179,13.987145 -3.471366,0 0,-8.834499 c 0.02776,-0.441678 0.039,-0.883479 0.05273,-1.325268 l 3.418625,0.01032 0,10.149447" /><g
76
   id="g3956"
77
   transform="translate(7.2478872,7.310403)"><line
78
     style="fill:none;stroke:#000000;stroke-width:3.5;stroke-opacity:1"
79
     id="line11"
80
     y2="8.0516615"
81
     y1="8.0516615"
82
     x2="14.318187"
83
     x1="2.6511855" /><line
84
     style="fill:none;stroke:#000000;stroke-width:3.5;stroke-opacity:1"
85
     id="line13"
86
     y2="13.887663"
87
     y1="2.2206612"
88
     x2="8.4831877"
89
     x1="8.4831877" /></g></svg>
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/mapviewer.properties
1

  
2
Add_a_ThematicMap_install_URL = Add a ThematicMap install URL
3

  
4
Add_install_Thematic_Map_URL = Add install Thematic Map URL
5

  
6
CRS = CRS
7

  
8
Cancel = Cancel
9

  
10
Close_Map = Close Map
11

  
12
Distance = Dist
13

  
14
Error_opening_installer_panel = Error_opening_installer_panel
15

  
16
Exit = Exit
17

  
18
Input_the_url = Input the URL
19

  
20
Install_ThematicMaps = Install Thematic Maps
21

  
22
Install_Thematic_Map = Install Thematic Map
23

  
24
Invalid_URL = Invalid URL
25

  
26
Latitude_status = Lat
27

  
28
Longitude_status = Lon
29

  
30
No_maps_found_Select_this_folder_anyway = No maps found. Select this folder anyway?
31

  
32
Open_Thematic_map = Open Thematic map
33

  
34
Pan = Pan
35

  
36
Problem_found_opening_map_see_log_for_details = Problem found opening map (see log for details)
37

  
38
Problem_found_setting_Thematic_Map_folder = Problem found setting Thematic Map folder (See log for more information)
39

  
40
Problems_found_getting_info_from_selected_layers = Problems found getting info from selected layers (see log file for details)
41

  
42
Scale = Scale
43

  
44
Select_Thematic_Map_folder = Select Thematic Map folder
45

  
46
Select_a_Thematic_Map_folder_first = Select a Thematic Map folder first
47

  
48
Select_a_layer_to_get_info = Select a layer to get information
49

  
50
Select_folder = Select folder
51

  
52
Show_Hide_Toc = Show/Hide Toc
53

  
54
Thematic_Map_information = Thematic Map information
55

  
56
Thematic_Maps_availables = Thematic Maps availables
57

  
58
Total = Total
59

  
60
Zoom = Zoom
61

  
62
Zoom_all = Zoom all
63

  
64
area = Area
65

  
66
gvSIG_Batovi_Map_Viewer = gvSIG Batov\u00ED Map Viewer
67

  
68
infoByPoint = Information By Point
69

  
70
measure = Measure
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/README.txt
1
Put into this folder the resources needed by your classes.
2

  
3
This folder is added to the classpath, so you can load any resources 
4
through the ClassLoader.
5

  
6
By default, in this folder you can find an example of log4j configuration,
7
prepared to log messages through the console, so logging works when you
8
run your classes.
org.gvsig.educa.batovi/branches/1.0/org.gvsig.educa.batovi/org.gvsig.educa.batovi.mapviewer/org.gvsig.educa.batovi.mapviewer/src/main/resources/mapviewer_en.properties
1

  
2
Add_a_ThematicMap_install_URL = Add a ThematicMap install URL
3

  
4
Add_install_Thematic_Map_URL = Add install Thematic Map URL
5

  
6
CRS = CRS
7

  
8
Cancel = Cancel
9

  
10
Close_Map = Close Map
11

  
12
Distance = Dist
13

  
14
Error_opening_installer_panel = Error_opening_installer_panel
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff