Commit 5a81e548b2270e833a23e60ee82e97b22eff555c

Authored by Edmar Moretti
1 parent 4cf3d8e0

Atualização da documentação

mobile/adicionatema.php
... ... @@ -4,9 +4,11 @@ Title: adicionatema.php
4 4  
5 5 Adiciona um tema ao mapa
6 6  
7   -File: i3geo/mobile/adicionatema.php
  7 +Monta e apresenta um formulário com a lista de grupos, subgrupos e temas
8 8  
9   -About: Licença
  9 +O usuário deve primeiro escolher um grupo para depois escolher um tema
  10 +
  11 +Licenca:
10 12  
11 13 I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
12 14  
... ... @@ -26,9 +28,13 @@ GNU junto com este programa; se não, escreva para a
26 28 Free Software Foundation, Inc., no endereço
27 29 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
28 30  
29   -Parameters:
  31 +Arquivo: i3geo/mobile/adicionatema.php
  32 +
  33 +Parametro:
  34 +
  35 +$tmpfname {string} - nome do mapfile em uso
30 36  
31   -tmpfname - nome do mapfile em uso
  37 +$tipo {string} - tipo de operação
32 38 */
33 39  
34 40 error_reporting(E_ALL);
... ...
mobile/ativatexto.php
... ... @@ -4,9 +4,11 @@ Title: ativatexto.php
4 4  
5 5 Ativa a toponimia de um tema
6 6  
7   -File: i3geo/mobile/desligar.php
  7 +Constrói e apresenta um formulário para o usuário escolher qual tema terá a toponímia ativada ou destaivada.
8 8  
9   -About: Licença
  9 +Após o usuário escolher um tema, é mostrada a lista de itens do tema.
  10 +
  11 +Licenca:
10 12  
11 13 I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
12 14  
... ... @@ -26,9 +28,11 @@ GNU junto com este programa; se não, escreva para a
26 28 Free Software Foundation, Inc., no endereço
27 29 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
28 30  
29   -Parameters:
  31 +Arquivo: i3geo/mobile/desligar.php
  32 +
  33 +Parametro:
30 34  
31   -tmpfname - nome do mapfile em uso
  35 +$tmpfname {string} - nome do mapfile em uso
32 36 */
33 37  
34 38 require_once("../classesphp/funcoes_gerais.php");
... ...
mobile/desligar.php
... ... @@ -4,9 +4,9 @@ Title: desligar.php
4 4  
5 5 Desliga um tema que está visível no mapa
6 6  
7   -File: i3geo/mobile/desligar.php
  7 +Constrói e apresenta um formulário para o usuário escolher o tema que será desligado.
8 8  
9   -About: Licença
  9 +Licenca:
10 10  
11 11 I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
12 12  
... ... @@ -26,9 +26,11 @@ GNU junto com este programa; se não, escreva para a
26 26 Free Software Foundation, Inc., no endereço
27 27 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
28 28  
29   -Parameters:
  29 +Arquivo: i3geo/mobile/desligar.php
30 30  
31   -tmpfname - nome do mapfile em uso
  31 +Parametro:
  32 +
  33 +$tmpfname {string} - nome do mapfile em uso
32 34 */
33 35  
34 36 require_once("../classesphp/funcoes_gerais.php");
... ...
mobile/escala.php
... ... @@ -1,53 +0,0 @@
1   -<?php
2   -require_once("../classesphp/funcoes_gerais.php");
3   -include_once ("../classesphp/pega_variaveis.php");
4   -include_once("../classesphp/carrega_ext.php");
5   -include("../classesphp/classe_escala.php");
6   -?>
7   -<html>
8   -<style>
9   -body
10   -{
11   - font:14pt arial,helvetica,clean,sans-serif;
12   - color:rgb(100,100,100);
13   -}
14   -p
15   -{
16   - font:12pt arial,helvetica,clean,sans-serif;
17   - color:black;
18   -}
19   -input
20   -{
21   - font:14pt arial,helvetica,clean,sans-serif;
22   - color:black;
23   - cursor:pointer;
24   - background-color:white;
25   -}
26   -h1
27   -{
28   - font:16pt arial,helvetica,clean,sans-serif;
29   - color:brown;
30   -}
31   -</style>
32   -<body>
33   -<form id='f' action='mobile.php?' method='get'>
34   - <input type='hidden' name='tmpfname' value='<?php echo $tmpfname; ?>' />
35   - <input id='tipo' type=hidden name='tipo' value='retorno' />
36   - <input id='tema' type=hidden name='tema' value='' />
37   -</form>
38   -<input type='button' value='retorna' style='cursor:pointer;' onclick='retorno()' />
39   -</body>
40   -<script>
41   -function retorno()
42   -{
43   - document.getElementById('tipo').value='retorno';
44   - document.getElementById('f').action = 'mobile.php';
45   - document.getElementById('f').submit();
46   -}
47   -</script>
48   -</html>
49   -<?php
50   -$m = new Escala($tmpfname);
51   -$escala = explode("'",$m->retornaBarraEscala());
52   -echo "<br><br><img src='$escala[1]' />";
53   -?>
54 0 \ No newline at end of file
mobile/identifica.php
... ... @@ -2,11 +2,9 @@
2 2 /*
3 3 Title: identifica.php
4 4  
5   -Identifica elementos no mapa em determinada coordenada x e y
  5 +Identifica elementos no mapa em determinada coordenada x e y e apresenta o resultado na tela
6 6  
7   -File: i3geo/mobile/adicionatema.php
8   -
9   -About: Licença
  7 +Licenca:
10 8  
11 9 I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
12 10  
... ... @@ -26,9 +24,15 @@ GNU junto com este programa; se não, escreva para a
26 24 Free Software Foundation, Inc., no endereço
27 25 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
28 26  
29   -Parameters:
  27 +Arquivo: i3geo/mobile/adicionatema.php
  28 +
  29 +Parametro:
  30 +
  31 +tmpfname {string} - nome do mapfile em uso
  32 +
  33 +x {numerico} - coordenada x em unidades de tela
30 34  
31   -tmpfname - nome do mapfile em uso
  35 +y {numerico} - coordenada y em unidades de tela
32 36 */
33 37  
34 38 error_reporting(0);
... ...
mobile/in.png

624 Bytes

mobile/in.svg
... ... @@ -1,361 +0,0 @@
1   -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2   -<!-- Created with Inkscape (http://www.inkscape.org/) -->
3   -<svg
4   - xmlns:dc="http://purl.org/dc/elements/1.1/"
5   - xmlns:cc="http://web.resource.org/cc/"
6   - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7   - xmlns:svg="http://www.w3.org/2000/svg"
8   - xmlns="http://www.w3.org/2000/svg"
9   - xmlns:xlink="http://www.w3.org/1999/xlink"
10   - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11   - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12   - height="18"
13   - id="svg1"
14   - inkscape:version="0.45.1"
15   - sodipodi:docbase="C:\ms4w\Apache\htdocs\i3geo\mobile"
16   - sodipodi:docname="in.svg"
17   - sodipodi:version="0.32"
18   - width="18"
19   - inkscape:output_extension="org.inkscape.output.svg.inkscape"
20   - version="1.0"
21   - inkscape:export-filename="C:\ms4w\Apache\htdocs\i3geo\mobile\in.png"
22   - inkscape:export-xdpi="90"
23   - inkscape:export-ydpi="90">
24   - <metadata
25   - id="metadata6809">
26   - <rdf:RDF>
27   - <cc:Work
28   - rdf:about="">
29   - <dc:title>globe</dc:title>
30   - <dc:description>A logo for the school club</dc:description>
31   - <dc:subject>
32   - <rdf:Bag>
33   - <rdf:li>hash</rdf:li>
34   - <rdf:li />
35   - <rdf:li>geography</rdf:li>
36   - <rdf:li>nations</rdf:li>
37   - <rdf:li>extraordinary</rdf:li>
38   - </rdf:Bag>
39   - </dc:subject>
40   - <dc:publisher>
41   - <cc:Agent
42   - rdf:about="http://www.openclipart.org">
43   - <dc:title>CopyLeft</dc:title>
44   - </cc:Agent>
45   - </dc:publisher>
46   - <dc:creator>
47   - <cc:Agent>
48   - <dc:title>Jason Knight</dc:title>
49   - </cc:Agent>
50   - </dc:creator>
51   - <dc:rights>
52   - <cc:Agent>
53   - <dc:title>CopyLeft</dc:title>
54   - </cc:Agent>
55   - </dc:rights>
56   - <dc:date />
57   - <dc:format>image/svg+xml</dc:format>
58   - <dc:type
59   - rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
60   - <cc:license
61   - rdf:resource="http://web.resource.org/cc/PublicDomain" />
62   - <dc:language>en</dc:language>
63   - </cc:Work>
64   - <cc:License
65   - rdf:about="http://web.resource.org/cc/PublicDomain">
66   - <cc:permits
67   - rdf:resource="http://web.resource.org/cc/Reproduction" />
68   - <cc:permits
69   - rdf:resource="http://web.resource.org/cc/Distribution" />
70   - <cc:permits
71   - rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
72   - </cc:License>
73   - </rdf:RDF>
74   - </metadata>
75   - <defs
76   - id="defs3">
77   - <linearGradient
78   - id="linearGradient1497"
79   - x1="741.63898"
80   - x2="622.33325"
81   - xlink:href="#linearGradient1492"
82   - y1="169.4436"
83   - y2="287.73825"
84   - gradientTransform="scale(0.9552926,1.0467997)"
85   - gradientUnits="userSpaceOnUse" />
86   - <linearGradient
87   - id="linearGradient1492">
88   - <stop
89   - id="stop1493"
90   - offset="0.0000000"
91   - style="stop-color:#dadada;stop-opacity:1.0000000;" />
92   - <stop
93   - id="stop1496"
94   - offset="0.34923077"
95   - style="stop-color:#f1f1f1;stop-opacity:1.0000000;" />
96   - <stop
97   - id="stop1494"
98   - offset="1.0000000"
99   - style="stop-color:#f0f0f0;stop-opacity:1.0000000;" />
100   - </linearGradient>
101   - <linearGradient
102   - id="linearGradient1495"
103   - x1="728.96643"
104   - x2="351.7063"
105   - xlink:href="#linearGradient1492"
106   - y1="230.07422"
107   - y2="689.86005"
108   - gradientTransform="scale(0.955425,1.0466546)"
109   - gradientUnits="userSpaceOnUse" />
110   - <linearGradient
111   - id="linearGradient1507">
112   - <stop
113   - id="stop1508"
114   - offset="0.0000000"
115   - style="stop-color:#000000;stop-opacity:0.095505618;" />
116   - <stop
117   - id="stop1510"
118   - offset="1.0000000"
119   - style="stop-color:#000000;stop-opacity:0.0000000;" />
120   - </linearGradient>
121   - <linearGradient
122   - id="linearGradient1506"
123   - x1="201.38963"
124   - x2="547.80804"
125   - xlink:href="#linearGradient1507"
126   - y1="843.20789"
127   - y2="383.76529"
128   - gradientTransform="scale(0.9446888,1.0585496)"
129   - gradientUnits="userSpaceOnUse" />
130   - <linearGradient
131   - id="linearGradient37404">
132   - <stop
133   - id="stop37406"
134   - offset="0"
135   - style="stop-color:#f0e024;stop-opacity:1;" />
136   - <stop
137   - id="stop37408"
138   - offset="1.0000000"
139   - style="stop-color:#ffffff;stop-opacity:1.0000000;" />
140   - </linearGradient>
141   - <linearGradient
142   - id="linearGradient1530">
143   - <stop
144   - id="stop1531"
145   - offset="0.0000000"
146   - style="stop-color:#0000ed;stop-opacity:1.0000000;" />
147   - <stop
148   - id="stop1532"
149   - offset="1.0000000"
150   - style="stop-color:#ffffff;stop-opacity:1.0000000;" />
151   - </linearGradient>
152   - <linearGradient
153   - id="linearGradient4041"
154   - inkscape:collect="always"
155   - x1="479.26898"
156   - x2="177.53368"
157   - xlink:href="#linearGradient1530"
158   - y1="376.20236"
159   - y2="57.332264"
160   - gradientTransform="scale(0.9872805,1.0128834)"
161   - gradientUnits="userSpaceOnUse" />
162   - <linearGradient
163   - inkscape:collect="always"
164   - xlink:href="#linearGradient37404"
165   - id="linearGradient2416"
166   - gradientUnits="userSpaceOnUse"
167   - gradientTransform="scale(0.9872805,1.0128834)"
168   - x1="479.26898"
169   - y1="376.20236"
170   - x2="177.53368"
171   - y2="57.332264" />
172   - </defs>
173   - <sodipodi:namedview
174   - bordercolor="#666666"
175   - borderopacity="1.0"
176   - id="base"
177   - inkscape:cx="31.925922"
178   - inkscape:cy="10.361733"
179   - inkscape:pageopacity="0.0"
180   - inkscape:pageshadow="2"
181   - inkscape:window-height="785"
182   - inkscape:window-width="1152"
183   - inkscape:window-x="22"
184   - inkscape:window-y="22"
185   - inkscape:zoom="8.8767414"
186   - pagecolor="#ffffff"
187   - width="18px"
188   - height="18px"
189   - inkscape:current-layer="svg1" />
190   - <g
191   - id="g2195"
192   - transform="translate(0.112654,0.6759237)">
193   - <g
194   - transform="matrix(0.5705612,0,0,0.5713748,6.4662531,6.968508)"
195   - id="g2209">
196   - <path
197   - d="M 611.97815 38.563004 A 0.33581543 1.9589615 0 1 1 611.30652,38.563004 A 0.33581543 1.9589615 0 1 1 611.97815 38.563004 z"
198   - id="path915"
199   - sodipodi:cx="611.64233"
200   - sodipodi:cy="38.563004"
201   - sodipodi:rx="0.33581543"
202   - sodipodi:ry="1.9589615"
203   - sodipodi:type="arc"
204   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
205   - transform="matrix(0.2005038,0.2936503,-0.3713527,0.1585501,-98.589396,-177.39014)" />
206   - <path
207   - d="M 588.74637 70.617256 A 2.8495178 3.0474091 0 1 1 583.04733,70.617256 A 2.8495178 3.0474091 0 1 1 588.74637 70.617256 z"
208   - id="path916"
209   - sodipodi:cx="585.89685"
210   - sodipodi:cy="70.617256"
211   - sodipodi:rx="2.8495178"
212   - sodipodi:ry="3.0474091"
213   - sodipodi:type="arc"
214   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
215   - transform="matrix(0.4220245,0,0,0.3337194,-232.85551,-7.5087611)" />
216   - <rect
217   - height="7.1806517"
218   - id="rect917"
219   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.37801892;stroke-dasharray:none;stroke-opacity:1"
220   - transform="matrix(0.946989,-0.321266,0.4768767,0.8789702,0,0)"
221   - width="1.6856785"
222   - x="3.9066679"
223   - y="13.119645" />
224   - <rect
225   - height="7.2811589"
226   - id="rect918"
227   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.37869304;stroke-opacity:1"
228   - transform="matrix(0.9272527,-0.3744362,0.5425002,0.8400556,0,0)"
229   - width="1.668368"
230   - x="2.9355562"
231   - y="13.505709" />
232   - <rect
233   - height="7.2487726"
234   - id="rect919"
235   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.37865904;stroke-opacity:1"
236   - transform="matrix(0.926076,-0.377337,0.5443524,0.8388567,0,0)"
237   - width="0.44167709"
238   - x="4.0126042"
239   - y="13.596796" />
240   - <path
241   - d="M 599.60834 42.396488 A 1.2982178 0.71817398 0 1 1 597.0119,42.396488 A 1.2982178 0.71817398 0 1 1 599.60834 42.396488 z"
242   - id="path920"
243   - sodipodi:cx="598.31012"
244   - sodipodi:cy="42.396488"
245   - sodipodi:rx="1.2982178"
246   - sodipodi:ry="0.71817398"
247   - sodipodi:type="arc"
248   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
249   - transform="matrix(0.3836641,-0.1390168,0.1758019,0.3033857,-227.4425,78.414656)" />
250   - <path
251   - d="M 595.63086 50.60009 A 1.4086914 1.4086914 0 1 1 592.81348,50.60009 A 1.4086914 1.4086914 0 1 1 595.63086 50.60009 z"
252   - id="path921"
253   - sodipodi:cx="594.22217"
254   - sodipodi:cy="50.60009"
255   - sodipodi:rx="1.4086914"
256   - sodipodi:ry="1.4086914"
257   - sodipodi:type="arc"
258   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
259   - transform="matrix(0.4220245,0,0,0.3337194,-240.58569,-7.9269684)" />
260   - <rect
261   - height="1.0259644"
262   - id="rect922"
263   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.37722552;stroke-opacity:1"
264   - transform="matrix(0.9656963,0.2596741,-0.3950522,0.9186587,0,0)"
265   - width="1.1885639"
266   - x="13.385818"
267   - y="6.3616672" />
268   - <rect
269   - height="1.0877815"
270   - id="rect923"
271   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.37528819;stroke-opacity:1"
272   - transform="matrix(0.9999307,1.1775331e-2,-1.8829477e-2,0.9998227,0,0)"
273   - width="0.48956811"
274   - x="10.363058"
275   - y="9.1954899" />
276   - <rect
277   - height="1.1072768"
278   - id="rect924"
279   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.38677511;stroke-opacity:1"
280   - transform="matrix(0.8097877,-0.5867231,0.8413248,0.5405298,0,0)"
281   - width="0.38557315"
282   - x="-2.5506871"
283   - y="14.604771" />
284   - <path
285   - d="M 598.94543 47.009277 A 0.69055176 0.74577332 0 1 1 597.56433,47.009277 A 0.69055176 0.74577332 0 1 1 598.94543 47.009277 z"
286   - id="path925"
287   - sodipodi:cx="598.25488"
288   - sodipodi:cy="47.009277"
289   - sodipodi:rx="0.69055176"
290   - sodipodi:ry="0.74577332"
291   - sodipodi:type="arc"
292   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
293   - transform="matrix(0.4220245,0,0,0.3337194,-242.70729,-7.2817352)" />
294   - <path
295   - d="M 587.74271 35.071239 A 0.66409302 1.2500191 0 1 1 586.41452,35.071239 A 0.66409302 1.2500191 0 1 1 587.74271 35.071239 z"
296   - id="path926"
297   - sodipodi:cx="587.07861"
298   - sodipodi:cy="35.071239"
299   - sodipodi:rx="0.66409302"
300   - sodipodi:ry="1.2500191"
301   - sodipodi:type="arc"
302   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
303   - transform="matrix(0.2962619,-4.2423751e-2,7.4324838e-2,0.2212577,-166.0958,26.043508)" />
304   - <rect
305   - height="0.31071135"
306   - id="rect927"
307   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.38365054;stroke-opacity:1"
308   - transform="matrix(0.8774083,0.4797443,-0.7221345,0.6917527,0,0)"
309   - width="0.69413871"
310   - x="15.122811"
311   - y="3.2587712" />
312   - </g>
313   - <g
314   - transform="matrix(1.2737694,0,0,1.4783208,-0.7186801,-0.3211089)"
315   - id="g2224">
316   - <path
317   - d="M 580.18707 35.148811 A 11.026123 10.746269 0 1 1 558.13483,35.148811 A 11.026123 10.746269 0 1 1 580.18707 35.148811 z"
318   - id="path913"
319   - sodipodi:cx="569.16095"
320   - sodipodi:cy="35.148811"
321   - sodipodi:rx="11.026123"
322   - sodipodi:ry="10.746269"
323   - sodipodi:type="arc"
324   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
325   - transform="matrix(0.4220245,0,0,0.3337194,-232.7338,-7.0602456)" />
326   - <a
327   - style="fill:#ffffff;fill-opacity:1;stroke:#251b15;stroke-opacity:1"
328   - id="a1514"
329   - transform="matrix(0.4220245,0,0,0.3337194,-224.86447,-3.1289799)"
330   - xlink:href="diagram/diagram.php">
331   - <path
332   - d="M 562 22.700001 A 11 10.75 0 1 1 540,22.700001 A 11 10.75 0 1 1 562 22.700001 z"
333   - id="path914"
334   - sodipodi:cx="551"
335   - sodipodi:cy="22.700001"
336   - sodipodi:rx="11"
337   - sodipodi:ry="10.75"
338   - sodipodi:type="arc"
339   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1" />
340   - </a>
341   - <text
342   - xml:space="preserve"
343   - style="font-size:6.59355736px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
344   - x="4.9396548"
345   - y="6.3630347"
346   - id="text2202"
347   - transform="scale(0.985943,1.0142574)"><tspan
348   - sodipodi:role="line"
349   - id="tspan2204"
350   - x="4.9396548"
351   - y="6.3630347">+</tspan></text>
352   - </g>
353   - </g>
354   - <rect
355   - style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#bd0000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
356   - id="rect2194"
357   - width="18.024632"
358   - height="18.362595"
359   - x="0.11265395"
360   - y="-0.024632327" />
361   -</svg>
mobile/index.htm
... ... @@ -7,11 +7,11 @@
7 7 /*
8 8 Title: index.htm
9 9  
10   -Redirecionador HTM do i3geo mobile
  10 +Redirecionador HTML do i3geo mobile
11 11  
12 12 Redireciona o navegador para o index.php
13 13  
14   -File: mobile/index.htm
  14 +Arquivo: mobile/index.htm
15 15 */
16 16  
17 17 window.location="index.php"
... ...
mobile/index.html
... ... @@ -20,7 +20,7 @@ Redirecionador HTML do i3geo mobile
20 20  
21 21 Redireciona o navegador para o index.php
22 22  
23   -File: mobile/index.htm
  23 +Arquivo: mobile/index.htm
24 24 */
25 25 window.location="index.php"
26 26 </script>
... ...
mobile/index.php
... ... @@ -30,17 +30,15 @@ h1
30 30 /*
31 31 Title: index.php
32 32  
33   -i3geo mobile
  33 +Tela inicial do i3geo mobile
34 34  
35   -Inicializa a versão do i3geo para dispositivos móveis.
  35 +Apresenta na tela as mensagens de boas vindas e a lista de mapas que o usuário pode abrir. Mostra também um campo de formulário para busca de lugares.
36 36  
37   -A lista de mapas mostrada na tela é obtida do arquivo menutemas/mapas.xml ou outro que estiver definido na variável de configuração $locmapas (definido no i3geo/ms_configura.php)
  37 +A lista de mapas mostrada na tela é obtida do cadastro de mapas existente no sistema de administração do i3Geo.
38 38  
39 39 Faz o cálculo do tamanho da tela do dispositivo e repassa a variável para o programa inicia.php.
40 40  
41   -File: i3geo/mobile/index.php
42   -
43   -About: Licença
  41 +Licenca:
44 42  
45 43 I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
46 44  
... ... @@ -60,6 +58,8 @@ GNU junto com este programa; se não, escreva para a
60 58 Free Software Foundation, Inc., no endereço
61 59 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
62 60  
  61 +Arquivo: i3geo/mobile/index.php
  62 +
63 63 */
64 64 include_once("../classesphp/pega_variaveis.php");
65 65 require_once("../classesphp/funcoes_gerais.php");
... ... @@ -106,9 +106,11 @@ Function: ligar
106 106  
107 107 Inicializa o i3geo mobile passando a lista de temas que devem ser ativados
108 108  
109   -Parameter:
  109 +Parametros:
110 110  
111   -temas - lista de códigos de temas
  111 +temas {string} - lista de códigos de temas que serão acrescentados ao mapa
  112 +
  113 +layers {string} - lista de layers que serão ligados
112 114 */
113 115 function ligar(temas,layers)
114 116 {
... ... @@ -119,10 +121,9 @@ function ligar(temas,layers)
119 121 /*
120 122 Function: localizar
121 123  
122   -Inicia a busca por um lugar
123   -
  124 +Acessa o PHP que gera o formulário de busca por um lugar.
124 125 */
125   -function localizar(temas)
  126 +function localizar()
126 127 {
127 128 document.getElementById('temasa').value = "estadosl";
128 129 document.getElementById('layers').value = "baserasterwms";
... ...
mobile/inicia.php
... ... @@ -2,15 +2,13 @@
2 2 /*
3 3 Title: inicia.php
4 4  
5   -Abre o mapa
6   -
7 5 Cria o mapa e abre a interface.
8 6  
9 7 Esse programa inclui o arquivo i3geo/ms_criamapa.php ativando alguns parâmetros especiais para a versão mobile.
10 8  
11   -File: i3geo/mobile/inicia.php
  9 +Cria os arquivos temporários do mapa e faz o include de <mobile.php>
12 10  
13   -About: Licença
  11 +Licenca:
14 12  
15 13 I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
16 14  
... ... @@ -30,6 +28,9 @@ GNU junto com este programa; se não, escreva para a
30 28 Free Software Foundation, Inc., no endereço
31 29 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
32 30  
  31 +
  32 +Arquivo: i3geo/mobile/inicia.php
  33 +
33 34 */
34 35 include_once("../classesphp/pega_variaveis.php");
35 36 $caminho = "../";
... ... @@ -49,6 +50,16 @@ Faz o include do programa mobile.php.
49 50 As variáveis wmobile e hmobile, que especificam o tamanho da tela do dispositivo, são definidas por index.php.
50 51  
51 52 A variável tmpfname é definida no processo de criação do mapa, feito pelo ms_criamapa.php, e guarda o nome do mapfile criado.
  53 +
  54 +Globais:
  55 +
  56 +$wmobile
  57 +
  58 +$hmobile
  59 +
  60 +$tmpfname
  61 +
  62 +$postgis_mapa
52 63 */
53 64 function iniciamobile()
54 65 {
... ... @@ -63,7 +74,6 @@ function iniciamobile()
63 74 //$n = explode(",",$bcor);
64 75 $cornb->setrgb(255,0,0);
65 76 $mapa->save($tmpfname);
66   - //$tipo = "inicia";
67 77 include("mobile.php");
68 78 exit;
69 79 }
... ...
mobile/l.png

483 Bytes

mobile/legenda.php
... ... @@ -4,9 +4,8 @@ Title: legenda.php
4 4  
5 5 Mostra a legenda do mapa
6 6  
7   -File: i3geo/mobile/legenda.php
8 7  
9   -About: Licença
  8 +Licenca
10 9  
11 10 I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
12 11  
... ... @@ -26,9 +25,11 @@ GNU junto com este programa; se não, escreva para a
26 25 Free Software Foundation, Inc., no endereço
27 26 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
28 27  
29   -Parameters:
  28 +Arquivo: i3geo/mobile/legenda.php
30 29  
31   -tmpfname - nome do mapfile em uso
  30 +Parametro:
  31 +
  32 +tmpfname {string} - nome do mapfile em uso
32 33 */
33 34 require_once("../classesphp/funcoes_gerais.php");
34 35 include_once ("../classesphp/pega_variaveis.php");
... ...
mobile/ligar.php
... ... @@ -4,9 +4,9 @@ Title: ligar.php
4 4  
5 5 Liga um tema que não está visível no mapa
6 6  
7   -File: i3geo/mobile/ligar.php
  7 +Constrói e mostra um formulário com a lista de temas desligados para o usuário escolher.
8 8  
9   -About: Licença
  9 +Licenca:
10 10  
11 11 I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
12 12  
... ... @@ -26,9 +26,11 @@ GNU junto com este programa; se não, escreva para a
26 26 Free Software Foundation, Inc., no endereço
27 27 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
28 28  
29   -Parameters:
  29 +Arquivo: i3geo/mobile/ligar.php
30 30  
31   -tmpfname - nome do mapfile em uso
  31 +Parametro:
  32 +
  33 +tmpfname {string} - nome do mapfile em uso
32 34 */
33 35 require_once("../classesphp/funcoes_gerais.php");
34 36 include_once ("../classesphp/pega_variaveis.php");
... ...
mobile/localizar.php
... ... @@ -2,13 +2,11 @@
2 2 /*
3 3 Title: localizar.php
4 4  
5   -Localiza um lugar no mapa.
  5 +Localiza um lugar e mostra no mapa.
6 6  
7 7 Utiliza o web service geonames do MMA.
8 8  
9   -File: i3geo/mobile/localizar.php
10   -
11   -About: Licença
  9 +Licenca:
12 10  
13 11 I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
14 12  
... ... @@ -28,9 +26,11 @@ GNU junto com este programa; se não, escreva para a
28 26 Free Software Foundation, Inc., no endereço
29 27 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
30 28  
31   -Parameters:
  29 +Arquivo: i3geo/mobile/localizar.php
  30 +
  31 +Parametro:
32 32  
33   -tmpfname - nome do mapfile em uso
  33 +tmpfname {string} - nome do mapfile em uso
34 34 */
35 35 error_reporting(0);
36 36 require_once("../classesphp/funcoes_gerais.php");
... ...
mobile/localizarxy.php
... ... @@ -2,13 +2,9 @@
2 2 /*
3 3 Title: localizarxy.php
4 4  
5   -Localiza um lugar no mapa.
  5 +Constrói e apresenta na tela um formulário para o usuário indicar um par de coordenadas para inserir um ponto no mapa
6 6  
7   -Utiliza o web service geonames do MMA.
8   -
9   -File: i3geo/mobile/localizar.php
10   -
11   -About: Licença
  7 +Licenca
12 8  
13 9 I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
14 10  
... ... @@ -28,9 +24,15 @@ GNU junto com este programa; se não, escreva para a
28 24 Free Software Foundation, Inc., no endereço
29 25 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
30 26  
31   -Parameters:
  27 +Arquivo: i3geo/mobile/localizar.php
  28 +
  29 +Parametro:
  30 +
  31 +tmpfname {string} - nome do mapfile em uso
  32 +
  33 +x {numerico} - coordenada x em dms
32 34  
33   -tmpfname - nome do mapfile em uso
  35 +y {numerico} - coordenada y em dms
34 36 */
35 37 error_reporting(E_ALL);
36 38 require_once("../classesphp/funcoes_gerais.php");
... ...
mobile/mobile.php
... ... @@ -30,13 +30,15 @@ document.body.innerHTML=&quot;&quot;;
30 30 /*
31 31 Title: mobile.php
32 32  
33   -Interface do mapa
  33 +Interface de apresentação do mapa. Inicializa o mapa interativo da versão mobile.
34 34  
35   -File: i3geo/mobile/mobile.php
  35 +A estrutura de funcionamento do mapa é baseada no reload da página toda vez que uma operação é executada.
36 36  
37   -About: Licença
  37 +Os parâmetros descritos abaixo são passados via URL.
38 38  
39   -I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
  39 +Licenca:
  40 +
  41 +i3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
40 42  
41 43 Direitos Autorais Reservados (c) 2006 Ministério do Meio Ambiente Brasil
42 44 Desenvolvedor: Edmar Moretti edmar.moretti@mma.gov.br
... ... @@ -54,14 +56,36 @@ GNU junto com este programa; se não, escreva para a
54 56 Free Software Foundation, Inc., no endereço
55 57 59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
56 58  
57   -Parameters:
  59 +Arquivo:
  60 +
  61 +i3geo/mobile/mobile.php
  62 +
  63 +Parametros:
  64 +
  65 +&tmpfname {string} - nome do mapfile em uso
  66 +
  67 +&tipo {string} - tipo de operação que será executada
  68 +*/
  69 +/*
  70 +Section: PHP
  71 +
  72 +Operações executadas do lado do servidor
  73 +
  74 +Valores que o parâmetro "tipo" pode assumir.
58 75  
59   -tmpfname - nome do mapfile em uso
  76 +Exemplo:
  77 +
  78 +mobile.php?tipo=zoommais&tmpfname=xxxxxxx
60 79 */
61 80 include_once ("../classesphp/pega_variaveis.php");
62 81 include_once("../classesphp/carrega_ext.php");
63 82 require_once("../classesphp/funcoes_gerais.php");
64 83 include("../ms_configura.php");
  84 +/*
  85 +Valor: zoommais
  86 +
  87 +Aproxima o mapa no nível de zoom 5.
  88 +*/
65 89 if ($tipo=="zoommais")
66 90 {
67 91 include("../classesphp/classe_navegacao.php");
... ... @@ -69,6 +93,11 @@ if ($tipo==&quot;zoommais&quot;)
69 93 $m->aproxima(5);
70 94 $m->salva();
71 95 }
  96 +/*
  97 +Valor: zoommais1
  98 +
  99 +Aproxima o mapa no nível de zoom 3.
  100 +*/
72 101 if ($tipo=="zoommais1")
73 102 {
74 103 include("../classesphp/classe_navegacao.php");
... ... @@ -76,6 +105,11 @@ if ($tipo==&quot;zoommais1&quot;)
76 105 $m->aproxima(3);
77 106 $m->salva();
78 107 }
  108 +/*
  109 +Valor: zoommais2
  110 +
  111 +Aproxima o mapa no nível de zoom 2.
  112 +*/
79 113 if ($tipo=="zoommais2")
80 114 {
81 115 include("../classesphp/classe_navegacao.php");
... ... @@ -83,6 +117,11 @@ if ($tipo==&quot;zoommais2&quot;)
83 117 $m->aproxima(2);
84 118 $m->salva();
85 119 }
  120 +/*
  121 +Valor: zoommenos
  122 +
  123 +Afasta o mapa no nível de zoom 5.
  124 +*/
86 125 if ($tipo=="zoommenos")
87 126 {
88 127 include("../classesphp/classe_navegacao.php");
... ... @@ -90,6 +129,11 @@ if ($tipo==&quot;zoommenos&quot;)
90 129 $m->afasta(5);
91 130 $m->salva();
92 131 }
  132 +/*
  133 +Valor: zoommenos
  134 +
  135 +Afasta o mapa no nível de zoom 3.
  136 +*/
93 137 if ($tipo=="zoommenos1")
94 138 {
95 139 include("../classesphp/classe_navegacao.php");
... ... @@ -97,6 +141,11 @@ if ($tipo==&quot;zoommenos1&quot;)
97 141 $m->afasta(3);
98 142 $m->salva();
99 143 }
  144 +/*
  145 +Valor: zoommenos
  146 +
  147 +Afasta o mapa no nível de zoom 2.
  148 +*/
100 149 if ($tipo=="zoommenos2")
101 150 {
102 151 include("../classesphp/classe_navegacao.php");
... ... @@ -104,6 +153,11 @@ if ($tipo==&quot;zoommenos2&quot;)
104 153 $m->afasta(2);
105 154 $m->salva();
106 155 }
  156 +/*
  157 +Valor: norte
  158 +
  159 +Desloca o mapa para o norte.
  160 +*/
107 161 if ($tipo=="norte")
108 162 {
109 163 include("../classesphp/classe_navegacao.php");
... ... @@ -114,6 +168,11 @@ if ($tipo==&quot;norte&quot;)
114 168 $m->pan($x,$y,"","");
115 169 $m->salva();
116 170 }
  171 +/*
  172 +Valor: sul
  173 +
  174 +Desloca o mapa para o sul.
  175 +*/
117 176 if ($tipo=="sul")
118 177 {
119 178 include("../classesphp/classe_navegacao.php");
... ... @@ -124,6 +183,11 @@ if ($tipo==&quot;sul&quot;)
124 183 $m->pan($x,$y,"","");
125 184 $m->salva();
126 185 }
  186 +/*
  187 +Valor: leste
  188 +
  189 +Desloca o mapa para o leste.
  190 +*/
127 191 if ($tipo=="leste")
128 192 {
129 193 include("../classesphp/classe_navegacao.php");
... ... @@ -133,6 +197,11 @@ if ($tipo==&quot;leste&quot;)
133 197 $m->pan($x,$y,"","");
134 198 $m->salva();
135 199 }
  200 +/*
  201 +Valor: oeste
  202 +
  203 +Desloca o mapa para o oeste.
  204 +*/
136 205 if ($tipo=="oeste")
137 206 {
138 207 include("../classesphp/classe_navegacao.php");
... ... @@ -142,16 +211,31 @@ if ($tipo==&quot;oeste&quot;)
142 211 $m->pan($x,$y,"","");
143 212 $m->salva();
144 213 }
  214 +/*
  215 +Valor: localizar
  216 +
  217 +Abre formulário para busca geográfica.
  218 +*/
145 219 if ($tipo=="localizar")
146 220 {
147 221 include("localizar.php");
148 222 exit;
149 223 }
  224 +/*
  225 +Valor: localizarxy
  226 +
  227 +Abre formulário para incluir um ponto no mapa
  228 +*/
150 229 if ($tipo=="localizarxy")
151 230 {
152 231 include("localizarxy.php");
153 232 exit;
154 233 }
  234 +/*
  235 +Valor: autopan
  236 +
  237 +Desloca o mapa de forma interativa.
  238 +*/
155 239 if ($tipo =="autopan")
156 240 {
157 241 include("../classesphp/classe_navegacao.php");
... ... @@ -240,67 +324,140 @@ if ((isset($maparef)) &amp;&amp; ($maparef == &quot;sim&quot;))
240 324 ?>
241 325 </body>
242 326 <script>
  327 +/*
  328 +Section: Javascript
  329 +
  330 +Operações executadas pelo navegador
  331 +*/
243 332 modooperacao = ""
244 333 navn = false
245 334 navm = false
246 335 var app = navigator.appName.substring(0,1);
247 336 if (app=='N') navn=true; else navm=true;
248 337 pan = ""
  338 +/*
  339 +Function: mensagem
  340 +
  341 +Inclui uma mensagem no elemento HTML com id=mensagem
  342 +
  343 +Parametro:
  344 +
  345 +m {string} - mensagem
  346 +*/
249 347 function mensagem(m)
250 348 {
251 349 if(m == ""){var m = "-";}
252 350 document.getElementById("mensagem").innerHTML = m
253 351 }
  352 +/*
  353 +Function: zoommais
  354 +
  355 +Executa a operação zoommais
  356 +*/
254 357 function zoommais()
255 358 {
256 359 document.getElementById('tipo').value = 'zoommais';
257 360 document.getElementById('f').submit();
258 361 }
  362 +/*
  363 +Function: zoommais1
  364 +
  365 +Executa a operação zoommais1
  366 +*/
259 367 function zoommais1()
260 368 {
261 369 document.getElementById('tipo').value = 'zoommais1';
262 370 document.getElementById('f').submit();
263 371 }
  372 +/*
  373 +Function: zoommais2
  374 +
  375 +Executa a operação zoommais2
  376 +*/
264 377 function zoommais2()
265 378 {
266 379 document.getElementById('tipo').value = 'zoommais2';
267 380 document.getElementById('f').submit();
268 381 }
  382 +/*
  383 +Function: zoommenos
  384 +
  385 +Executa a operação zoommenos
  386 +*/
269 387 function zoommenos()
270 388 {
271 389 document.getElementById('tipo').value = 'zoommenos';
272 390 document.getElementById('f').submit();
273 391 }
  392 +/*
  393 +Function: zoommenos1
  394 +
  395 +Executa a operação zoommenos1
  396 +*/
274 397 function zoommenos1()
275 398 {
276 399 document.getElementById('tipo').value = 'zoommenos1';
277 400 document.getElementById('f').submit();
278 401 }
  402 +/*
  403 +Function: zoommenos2
  404 +
  405 +Executa a operação zoommenos2
  406 +*/
279 407 function zoommenos2()
280 408 {
281 409 document.getElementById('tipo').value = 'zoommenos2';
282 410 document.getElementById('f').submit();
283 411 }
  412 +/*
  413 +Function: norte
  414 +
  415 +Executa a operação norte
  416 +*/
284 417 function norte()
285 418 {
286 419 document.getElementById('tipo').value = 'norte';
287 420 document.getElementById('f').submit();
288 421 }
  422 +/*
  423 +Function: sul
  424 +
  425 +Executa a operação sul
  426 +*/
289 427 function sul()
290 428 {
291 429 document.getElementById('tipo').value = 'sul';
292 430 document.getElementById('f').submit();
293 431 }
  432 +/*
  433 +Function: leste
  434 +
  435 +Executa a operação leste
  436 +*/
294 437 function leste()
295 438 {
296 439 document.getElementById('tipo').value = 'leste';
297 440 document.getElementById('f').submit();
298 441 }
  442 +/*
  443 +Function: oeste
  444 +
  445 +Executa a operação oeste
  446 +*/
299 447 function oeste()
300 448 {
301 449 document.getElementById('tipo').value = 'oeste';
302 450 document.getElementById('f').submit();
303 451 }
  452 +/*
  453 +Function: op
  454 +
  455 +Abre um novo formulário PHP
  456 +
  457 +Parametro:
  458 +
  459 +valor {string} - indica qual formulário deve ser aberto
  460 +*/
304 461 function op(valor)
305 462 {
306 463 document.getElementById('tipo').value = valor;
... ... @@ -324,6 +481,11 @@ function op(valor)
324 481 {document.getElementById('f').action = "localizarxy.php?"}
325 482 document.getElementById('f').submit();
326 483 }
  484 +/*
  485 +Function: maparef
  486 +
  487 +Mostra na tela o mapa de referência
  488 +*/
327 489 function maparef()
328 490 {
329 491 var temp = document.getElementById("referencia").value;
... ... @@ -334,6 +496,11 @@ function maparef()
334 496 document.getElementById('tipo').value = "";
335 497 document.getElementById('f').submit();
336 498 }
  499 +/*
  500 +Function: autopan
  501 +
  502 +Captura os parâmetros para executar a operação de deslocamento dinâmico do mapa
  503 +*/
337 504 function autopan(exy)
338 505 {
339 506 var xy = capturaposicao(exy)
... ... @@ -348,11 +515,25 @@ function autopan(exy)
348 515 document.getElementById('f').submit();
349 516 }
350 517 }
  518 +/*
  519 +Function: identifica
  520 +
  521 +Altera o modo de operação do mapa de forma que ao ser clicado, o resultado será a abertura de um formulário com os resultados do clique
  522 +*/
351 523 function identifica()
352 524 {
353 525 modooperacao = "identifica"
354 526 document.getElementById("botoes").innerHTML = "Clique no mapa"
355 527 }
  528 +/*
  529 +Function: capturaposicao
  530 +
  531 +Calcula a posição do clique sobre o mapa
  532 +
  533 +Retorno:
  534 +
  535 +{array}
  536 +*/
356 537 function capturaposicao(exy)
357 538 {
358 539 //var e = (navn) ? exy : window.event;
... ... @@ -365,6 +546,15 @@ function capturaposicao(exy)
365 546 var yfig = yfig - pos[1]
366 547 return [xfig,yfig]
367 548 }
  549 +/*
  550 +Function: findPos
  551 +
  552 +Calcula a posição de um elemento HTML na tela
  553 +
  554 +Retorno:
  555 +
  556 +{array}
  557 +*/
368 558 function findPos(obj) {
369 559 var curleft = curtop = 0;
370 560 if (obj.offsetParent) {
... ...
mobile/n.png

474 Bytes

mobile/o.png

456 Bytes

mobile/o.svg
... ... @@ -1,202 +0,0 @@
1   -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2   -<!-- Created with Inkscape (http://www.inkscape.org/) -->
3   -<svg
4   - xmlns:dc="http://purl.org/dc/elements/1.1/"
5   - xmlns:cc="http://web.resource.org/cc/"
6   - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7   - xmlns:svg="http://www.w3.org/2000/svg"
8   - xmlns="http://www.w3.org/2000/svg"
9   - xmlns:xlink="http://www.w3.org/1999/xlink"
10   - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11   - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12   - height="18"
13   - id="svg1"
14   - inkscape:version="0.45.1"
15   - sodipodi:docbase="C:\ms4w\Apache\htdocs\i3geo\mobile"
16   - sodipodi:docname="o.svg"
17   - sodipodi:version="0.32"
18   - width="18"
19   - inkscape:output_extension="org.inkscape.output.svg.inkscape"
20   - version="1.0"
21   - inkscape:export-filename="C:\ms4w\Apache\htdocs\i3geo\mobile\o.png"
22   - inkscape:export-xdpi="90"
23   - inkscape:export-ydpi="90">
24   - <metadata
25   - id="metadata6809">
26   - <rdf:RDF>
27   - <cc:Work
28   - rdf:about="">
29   - <dc:title>globe</dc:title>
30   - <dc:description>A logo for the school club</dc:description>
31   - <dc:subject>
32   - <rdf:Bag>
33   - <rdf:li>hash</rdf:li>
34   - <rdf:li />
35   - <rdf:li>geography</rdf:li>
36   - <rdf:li>nations</rdf:li>
37   - <rdf:li>extraordinary</rdf:li>
38   - </rdf:Bag>
39   - </dc:subject>
40   - <dc:publisher>
41   - <cc:Agent
42   - rdf:about="http://www.openclipart.org">
43   - <dc:title>CopyLeft</dc:title>
44   - </cc:Agent>
45   - </dc:publisher>
46   - <dc:creator>
47   - <cc:Agent>
48   - <dc:title>Jason Knight</dc:title>
49   - </cc:Agent>
50   - </dc:creator>
51   - <dc:rights>
52   - <cc:Agent>
53   - <dc:title>CopyLeft</dc:title>
54   - </cc:Agent>
55   - </dc:rights>
56   - <dc:date />
57   - <dc:format>image/svg+xml</dc:format>
58   - <dc:type
59   - rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
60   - <cc:license
61   - rdf:resource="http://web.resource.org/cc/PublicDomain" />
62   - <dc:language>en</dc:language>
63   - </cc:Work>
64   - <cc:License
65   - rdf:about="http://web.resource.org/cc/PublicDomain">
66   - <cc:permits
67   - rdf:resource="http://web.resource.org/cc/Reproduction" />
68   - <cc:permits
69   - rdf:resource="http://web.resource.org/cc/Distribution" />
70   - <cc:permits
71   - rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
72   - </cc:License>
73   - </rdf:RDF>
74   - </metadata>
75   - <defs
76   - id="defs3">
77   - <linearGradient
78   - id="linearGradient1497"
79   - x1="741.63898"
80   - x2="622.33325"
81   - xlink:href="#linearGradient1492"
82   - y1="169.4436"
83   - y2="287.73825"
84   - gradientTransform="scale(0.9552926,1.0467997)"
85   - gradientUnits="userSpaceOnUse" />
86   - <linearGradient
87   - id="linearGradient1492">
88   - <stop
89   - id="stop1493"
90   - offset="0.0000000"
91   - style="stop-color:#dadada;stop-opacity:1.0000000;" />
92   - <stop
93   - id="stop1496"
94   - offset="0.34923077"
95   - style="stop-color:#f1f1f1;stop-opacity:1.0000000;" />
96   - <stop
97   - id="stop1494"
98   - offset="1.0000000"
99   - style="stop-color:#f0f0f0;stop-opacity:1.0000000;" />
100   - </linearGradient>
101   - <linearGradient
102   - id="linearGradient1495"
103   - x1="728.96643"
104   - x2="351.7063"
105   - xlink:href="#linearGradient1492"
106   - y1="230.07422"
107   - y2="689.86005"
108   - gradientTransform="scale(0.955425,1.0466546)"
109   - gradientUnits="userSpaceOnUse" />
110   - <linearGradient
111   - id="linearGradient1507">
112   - <stop
113   - id="stop1508"
114   - offset="0.0000000"
115   - style="stop-color:#000000;stop-opacity:0.095505618;" />
116   - <stop
117   - id="stop1510"
118   - offset="1.0000000"
119   - style="stop-color:#000000;stop-opacity:0.0000000;" />
120   - </linearGradient>
121   - <linearGradient
122   - id="linearGradient1506"
123   - x1="201.38963"
124   - x2="547.80804"
125   - xlink:href="#linearGradient1507"
126   - y1="843.20789"
127   - y2="383.76529"
128   - gradientTransform="scale(0.9446888,1.0585496)"
129   - gradientUnits="userSpaceOnUse" />
130   - <linearGradient
131   - id="linearGradient37404">
132   - <stop
133   - id="stop37406"
134   - offset="0"
135   - style="stop-color:#f0e024;stop-opacity:1;" />
136   - <stop
137   - id="stop37408"
138   - offset="1.0000000"
139   - style="stop-color:#ffffff;stop-opacity:1.0000000;" />
140   - </linearGradient>
141   - <linearGradient
142   - id="linearGradient1530">
143   - <stop
144   - id="stop1531"
145   - offset="0.0000000"
146   - style="stop-color:#0000ed;stop-opacity:1.0000000;" />
147   - <stop
148   - id="stop1532"
149   - offset="1.0000000"
150   - style="stop-color:#ffffff;stop-opacity:1.0000000;" />
151   - </linearGradient>
152   - <linearGradient
153   - id="linearGradient4041"
154   - inkscape:collect="always"
155   - x1="479.26898"
156   - x2="177.53368"
157   - xlink:href="#linearGradient1530"
158   - y1="376.20236"
159   - y2="57.332264"
160   - gradientTransform="scale(0.9872805,1.0128834)"
161   - gradientUnits="userSpaceOnUse" />
162   - <linearGradient
163   - inkscape:collect="always"
164   - xlink:href="#linearGradient37404"
165   - id="linearGradient2416"
166   - gradientUnits="userSpaceOnUse"
167   - gradientTransform="scale(0.9872805,1.0128834)"
168   - x1="479.26898"
169   - y1="376.20236"
170   - x2="177.53368"
171   - y2="57.332264" />
172   - </defs>
173   - <sodipodi:namedview
174   - bordercolor="#666666"
175   - borderopacity="1.0"
176   - id="base"
177   - inkscape:cx="31.925922"
178   - inkscape:cy="10.361733"
179   - inkscape:pageopacity="0.0"
180   - inkscape:pageshadow="2"
181   - inkscape:window-height="785"
182   - inkscape:window-width="1152"
183   - inkscape:window-x="22"
184   - inkscape:window-y="22"
185   - inkscape:zoom="8.8767414"
186   - pagecolor="#ffffff"
187   - width="18px"
188   - height="18px"
189   - inkscape:current-layer="svg1" />
190   - <rect
191   - style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#bd0000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
192   - id="rect2194"
193   - width="18.024632"
194   - height="18.362595"
195   - x="0.11265476"
196   - y="-0.19361347" />
197   - <path
198   - style="fill:#efc60f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.32408106;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
199   - sodipodi:nodetypes="cccccccc"
200   - id="path1216"
201   - d="M 15.175087,5.9521731 L 15.175087,11.772958 L 9.7565119,11.772958 L 9.7565119,14.505164 L 3.4128151,8.7226827 L 9.5897643,3.1322421 L 9.6243533,5.9521731 L 15.175087,5.9521731 z " />
202   -</svg>
mobile/out.png

593 Bytes

mobile/out.svg
... ... @@ -1,356 +0,0 @@
1   -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2   -<!-- Created with Inkscape (http://www.inkscape.org/) -->
3   -<svg
4   - xmlns:dc="http://purl.org/dc/elements/1.1/"
5   - xmlns:cc="http://web.resource.org/cc/"
6   - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7   - xmlns:svg="http://www.w3.org/2000/svg"
8   - xmlns="http://www.w3.org/2000/svg"
9   - xmlns:xlink="http://www.w3.org/1999/xlink"
10   - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11   - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12   - height="18"
13   - id="svg1"
14   - inkscape:version="0.45.1"
15   - sodipodi:docbase="C:\ms4w\Apache\htdocs\i3geo\mobile"
16   - sodipodi:docname="out.svg"
17   - sodipodi:version="0.32"
18   - width="18"
19   - inkscape:output_extension="org.inkscape.output.svg.inkscape"
20   - version="1.0"
21   - inkscape:export-filename="C:\ms4w\Apache\htdocs\i3geo\mobile\out.png"
22   - inkscape:export-xdpi="90"
23   - inkscape:export-ydpi="90">
24   - <metadata
25   - id="metadata6809">
26   - <rdf:RDF>
27   - <cc:Work
28   - rdf:about="">
29   - <dc:title>globe</dc:title>
30   - <dc:description>A logo for the school club</dc:description>
31   - <dc:subject>
32   - <rdf:Bag>
33   - <rdf:li>hash</rdf:li>
34   - <rdf:li />
35   - <rdf:li>geography</rdf:li>
36   - <rdf:li>nations</rdf:li>
37   - <rdf:li>extraordinary</rdf:li>
38   - </rdf:Bag>
39   - </dc:subject>
40   - <dc:publisher>
41   - <cc:Agent
42   - rdf:about="http://www.openclipart.org">
43   - <dc:title>CopyLeft</dc:title>
44   - </cc:Agent>
45   - </dc:publisher>
46   - <dc:creator>
47   - <cc:Agent>
48   - <dc:title>Jason Knight</dc:title>
49   - </cc:Agent>
50   - </dc:creator>
51   - <dc:rights>
52   - <cc:Agent>
53   - <dc:title>CopyLeft</dc:title>
54   - </cc:Agent>
55   - </dc:rights>
56   - <dc:date />
57   - <dc:format>image/svg+xml</dc:format>
58   - <dc:type
59   - rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
60   - <cc:license
61   - rdf:resource="http://web.resource.org/cc/PublicDomain" />
62   - <dc:language>en</dc:language>
63   - </cc:Work>
64   - <cc:License
65   - rdf:about="http://web.resource.org/cc/PublicDomain">
66   - <cc:permits
67   - rdf:resource="http://web.resource.org/cc/Reproduction" />
68   - <cc:permits
69   - rdf:resource="http://web.resource.org/cc/Distribution" />
70   - <cc:permits
71   - rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
72   - </cc:License>
73   - </rdf:RDF>
74   - </metadata>
75   - <defs
76   - id="defs3">
77   - <linearGradient
78   - id="linearGradient1497"
79   - x1="741.63898"
80   - x2="622.33325"
81   - xlink:href="#linearGradient1492"
82   - y1="169.4436"
83   - y2="287.73825"
84   - gradientTransform="scale(0.9552926,1.0467997)"
85   - gradientUnits="userSpaceOnUse" />
86   - <linearGradient
87   - id="linearGradient1492">
88   - <stop
89   - id="stop1493"
90   - offset="0.0000000"
91   - style="stop-color:#dadada;stop-opacity:1.0000000;" />
92   - <stop
93   - id="stop1496"
94   - offset="0.34923077"
95   - style="stop-color:#f1f1f1;stop-opacity:1.0000000;" />
96   - <stop
97   - id="stop1494"
98   - offset="1.0000000"
99   - style="stop-color:#f0f0f0;stop-opacity:1.0000000;" />
100   - </linearGradient>
101   - <linearGradient
102   - id="linearGradient1495"
103   - x1="728.96643"
104   - x2="351.7063"
105   - xlink:href="#linearGradient1492"
106   - y1="230.07422"
107   - y2="689.86005"
108   - gradientTransform="scale(0.955425,1.0466546)"
109   - gradientUnits="userSpaceOnUse" />
110   - <linearGradient
111   - id="linearGradient1507">
112   - <stop
113   - id="stop1508"
114   - offset="0.0000000"
115   - style="stop-color:#000000;stop-opacity:0.095505618;" />
116   - <stop
117   - id="stop1510"
118   - offset="1.0000000"
119   - style="stop-color:#000000;stop-opacity:0.0000000;" />
120   - </linearGradient>
121   - <linearGradient
122   - id="linearGradient1506"
123   - x1="201.38963"
124   - x2="547.80804"
125   - xlink:href="#linearGradient1507"
126   - y1="843.20789"
127   - y2="383.76529"
128   - gradientTransform="scale(0.9446888,1.0585496)"
129   - gradientUnits="userSpaceOnUse" />
130   - <linearGradient
131   - id="linearGradient37404">
132   - <stop
133   - id="stop37406"
134   - offset="0"
135   - style="stop-color:#f0e024;stop-opacity:1;" />
136   - <stop
137   - id="stop37408"
138   - offset="1.0000000"
139   - style="stop-color:#ffffff;stop-opacity:1.0000000;" />
140   - </linearGradient>
141   - <linearGradient
142   - id="linearGradient1530">
143   - <stop
144   - id="stop1531"
145   - offset="0.0000000"
146   - style="stop-color:#0000ed;stop-opacity:1.0000000;" />
147   - <stop
148   - id="stop1532"
149   - offset="1.0000000"
150   - style="stop-color:#ffffff;stop-opacity:1.0000000;" />
151   - </linearGradient>
152   - <linearGradient
153   - id="linearGradient4041"
154   - inkscape:collect="always"
155   - x1="479.26898"
156   - x2="177.53368"
157   - xlink:href="#linearGradient1530"
158   - y1="376.20236"
159   - y2="57.332264"
160   - gradientTransform="scale(0.9872805,1.0128834)"
161   - gradientUnits="userSpaceOnUse" />
162   - <linearGradient
163   - inkscape:collect="always"
164   - xlink:href="#linearGradient37404"
165   - id="linearGradient2416"
166   - gradientUnits="userSpaceOnUse"
167   - gradientTransform="scale(0.9872805,1.0128834)"
168   - x1="479.26898"
169   - y1="376.20236"
170   - x2="177.53368"
171   - y2="57.332264" />
172   - </defs>
173   - <sodipodi:namedview
174   - bordercolor="#666666"
175   - borderopacity="1.0"
176   - id="base"
177   - inkscape:cx="31.925922"
178   - inkscape:cy="10.361733"
179   - inkscape:pageopacity="0.0"
180   - inkscape:pageshadow="2"
181   - inkscape:window-height="785"
182   - inkscape:window-width="1152"
183   - inkscape:window-x="22"
184   - inkscape:window-y="22"
185   - inkscape:zoom="8.8767414"
186   - pagecolor="#ffffff"
187   - width="18px"
188   - height="18px"
189   - inkscape:current-layer="svg1" />
190   - <g
191   - id="g2194"
192   - transform="translate(0,0.5632698)">
193   - <g
194   - transform="matrix(0.5705612,0,0,0.5713748,6.4662531,6.968508)"
195   - id="g2209">
196   - <path
197   - d="M 611.97815 38.563004 A 0.33581543 1.9589615 0 1 1 611.30652,38.563004 A 0.33581543 1.9589615 0 1 1 611.97815 38.563004 z"
198   - id="path915"
199   - sodipodi:cx="611.64233"
200   - sodipodi:cy="38.563004"
201   - sodipodi:rx="0.33581543"
202   - sodipodi:ry="1.9589615"
203   - sodipodi:type="arc"
204   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
205   - transform="matrix(0.2005038,0.2936503,-0.3713527,0.1585501,-98.589396,-177.39014)" />
206   - <path
207   - d="M 588.74637 70.617256 A 2.8495178 3.0474091 0 1 1 583.04733,70.617256 A 2.8495178 3.0474091 0 1 1 588.74637 70.617256 z"
208   - id="path916"
209   - sodipodi:cx="585.89685"
210   - sodipodi:cy="70.617256"
211   - sodipodi:rx="2.8495178"
212   - sodipodi:ry="3.0474091"
213   - sodipodi:type="arc"
214   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
215   - transform="matrix(0.4220245,0,0,0.3337194,-232.85551,-7.5087611)" />
216   - <rect
217   - height="7.1806517"
218   - id="rect917"
219   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.37801892;stroke-dasharray:none;stroke-opacity:1"
220   - transform="matrix(0.946989,-0.321266,0.4768767,0.8789702,0,0)"
221   - width="1.6856785"
222   - x="3.9066679"
223   - y="13.119645" />
224   - <rect
225   - height="7.2811589"
226   - id="rect918"
227   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.37869304;stroke-opacity:1"
228   - transform="matrix(0.9272527,-0.3744362,0.5425002,0.8400556,0,0)"
229   - width="1.668368"
230   - x="2.9355562"
231   - y="13.505709" />
232   - <rect
233   - height="7.2487726"
234   - id="rect919"
235   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.37865904;stroke-opacity:1"
236   - transform="matrix(0.926076,-0.377337,0.5443524,0.8388567,0,0)"
237   - width="0.44167709"
238   - x="4.0126042"
239   - y="13.596796" />
240   - <path
241   - d="M 599.60834 42.396488 A 1.2982178 0.71817398 0 1 1 597.0119,42.396488 A 1.2982178 0.71817398 0 1 1 599.60834 42.396488 z"
242   - id="path920"
243   - sodipodi:cx="598.31012"
244   - sodipodi:cy="42.396488"
245   - sodipodi:rx="1.2982178"
246   - sodipodi:ry="0.71817398"
247   - sodipodi:type="arc"
248   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
249   - transform="matrix(0.3836641,-0.1390168,0.1758019,0.3033857,-227.4425,78.414656)" />
250   - <path
251   - d="M 595.63086 50.60009 A 1.4086914 1.4086914 0 1 1 592.81348,50.60009 A 1.4086914 1.4086914 0 1 1 595.63086 50.60009 z"
252   - id="path921"
253   - sodipodi:cx="594.22217"
254   - sodipodi:cy="50.60009"
255   - sodipodi:rx="1.4086914"
256   - sodipodi:ry="1.4086914"
257   - sodipodi:type="arc"
258   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
259   - transform="matrix(0.4220245,0,0,0.3337194,-240.58569,-7.9269684)" />
260   - <rect
261   - height="1.0259644"
262   - id="rect922"
263   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.37722552;stroke-opacity:1"
264   - transform="matrix(0.9656963,0.2596741,-0.3950522,0.9186587,0,0)"
265   - width="1.1885639"
266   - x="13.385818"
267   - y="6.3616672" />
268   - <rect
269   - height="1.0877815"
270   - id="rect923"
271   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.37528819;stroke-opacity:1"
272   - transform="matrix(0.9999307,1.1775331e-2,-1.8829477e-2,0.9998227,0,0)"
273   - width="0.48956811"
274   - x="10.363058"
275   - y="9.1954899" />
276   - <rect
277   - height="1.1072768"
278   - id="rect924"
279   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.38677511;stroke-opacity:1"
280   - transform="matrix(0.8097877,-0.5867231,0.8413248,0.5405298,0,0)"
281   - width="0.38557315"
282   - x="-2.5506871"
283   - y="14.604771" />
284   - <path
285   - d="M 598.94543 47.009277 A 0.69055176 0.74577332 0 1 1 597.56433,47.009277 A 0.69055176 0.74577332 0 1 1 598.94543 47.009277 z"
286   - id="path925"
287   - sodipodi:cx="598.25488"
288   - sodipodi:cy="47.009277"
289   - sodipodi:rx="0.69055176"
290   - sodipodi:ry="0.74577332"
291   - sodipodi:type="arc"
292   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
293   - transform="matrix(0.4220245,0,0,0.3337194,-242.70729,-7.2817352)" />
294   - <path
295   - d="M 587.74271 35.071239 A 0.66409302 1.2500191 0 1 1 586.41452,35.071239 A 0.66409302 1.2500191 0 1 1 587.74271 35.071239 z"
296   - id="path926"
297   - sodipodi:cx="587.07861"
298   - sodipodi:cy="35.071239"
299   - sodipodi:rx="0.66409302"
300   - sodipodi:ry="1.2500191"
301   - sodipodi:type="arc"
302   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
303   - transform="matrix(0.2962619,-4.2423751e-2,7.4324838e-2,0.2212577,-166.0958,26.043508)" />
304   - <rect
305   - height="0.31071135"
306   - id="rect927"
307   - style="font-size:12px;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:0.38365054;stroke-opacity:1"
308   - transform="matrix(0.8774083,0.4797443,-0.7221345,0.6917527,0,0)"
309   - width="0.69413871"
310   - x="15.122811"
311   - y="3.2587712" />
312   - </g>
313   - <path
314   - transform="matrix(0.5375619,0,0,0.4933443,-297.16787,-10.758417)"
315   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
316   - sodipodi:type="arc"
317   - sodipodi:ry="10.746269"
318   - sodipodi:rx="11.026123"
319   - sodipodi:cy="35.148811"
320   - sodipodi:cx="569.16095"
321   - id="path913"
322   - d="M 580.18707 35.148811 A 11.026123 10.746269 0 1 1 558.13483,35.148811 A 11.026123 10.746269 0 1 1 580.18707 35.148811 z" />
323   - <a
324   - xlink:href="diagram/diagram.php"
325   - transform="matrix(0.5375619,0,0,0.4933443,-287.14416,-4.946745)"
326   - id="a1514"
327   - style="fill:#ffffff;fill-opacity:1;stroke:#251b15;stroke-opacity:1">
328   - <path
329   - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#251b15;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1"
330   - sodipodi:type="arc"
331   - sodipodi:ry="10.75"
332   - sodipodi:rx="11"
333   - sodipodi:cy="22.700001"
334   - sodipodi:cx="551"
335   - id="path914"
336   - d="M 562 22.700001 A 11 10.75 0 1 1 540,22.700001 A 11 10.75 0 1 1 562 22.700001 z" />
337   - </a>
338   - <text
339   - id="text2254"
340   - y="11.578725"
341   - x="5.4073901"
342   - style="font-size:20px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Bitstream Vera Sans"
343   - xml:space="preserve"><tspan
344   - y="11.578725"
345   - x="5.4073901"
346   - id="tspan2256"
347   - sodipodi:role="line">-</tspan></text>
348   - </g>
349   - <rect
350   - style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#bd0000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
351   - id="rect2194"
352   - width="18.024632"
353   - height="18.362595"
354   - x="0.11265476"
355   - y="-0.19361347" />
356   -</svg>
mobile/qrcode.htm
... ... @@ -29,6 +29,37 @@ h1
29 29 <br><br><br>
30 30 <img src='' id=rcode >
31 31 <script>
  32 +/*
  33 +Title: qrcode.htm
  34 +
  35 +Mostra imagem do tipo QRCODE que codifica o endereço da versão mobile.
  36 +
  37 +Licenca:
  38 +
  39 +GPL2
  40 +
  41 +I3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet
  42 +
  43 +Direitos Autorais Reservados (c) 2006 Ministério do Meio Ambiente Brasil
  44 +Desenvolvedor: Edmar Moretti edmar.moretti@mma.gov.br
  45 +
  46 +Este programa é software livre; você pode redistribuí-lo
  47 +e/ou modificá-lo sob os termos da Licença Pública Geral
  48 +GNU conforme publicada pela Free Software Foundation;
  49 +tanto a versão 2 da Licença.
  50 +Este programa é distribuído na expectativa de que seja útil,
  51 +porém, SEM NENHUMA GARANTIA; nem mesmo a garantia implícita
  52 +de COMERCIABILIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA.
  53 +Consulte a Licença Pública Geral do GNU para mais detalhes.
  54 +Você deve ter recebido uma cópia da Licença Pública Geral do
  55 +GNU junto com este programa; se não, escreva para a
  56 +Free Software Foundation, Inc., no endereço
  57 +59 Temple Street, Suite 330, Boston, MA 02111-1307 USA.
  58 +
  59 +Arquivo:
  60 +
  61 +i3geo/mobile/qrcode.htm
  62 +*/
32 63 var endereco = '../pacotes/qrcode/php/qr_img.php?d='+"http://"+window.location.host+"/i3geo/mobile"
33 64 document.getElementById("rcode").src = endereco
34 65 </script>
... ...
mobile/s.png

501 Bytes

mobile/s.svg
... ... @@ -1,202 +0,0 @@
1   -<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2   -<!-- Created with Inkscape (http://www.inkscape.org/) -->
3   -<svg
4   - xmlns:dc="http://purl.org/dc/elements/1.1/"
5   - xmlns:cc="http://web.resource.org/cc/"
6   - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7   - xmlns:svg="http://www.w3.org/2000/svg"
8   - xmlns="http://www.w3.org/2000/svg"
9   - xmlns:xlink="http://www.w3.org/1999/xlink"
10   - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11   - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12   - height="18"
13   - id="svg1"
14   - inkscape:version="0.45.1"
15   - sodipodi:docbase="C:\ms4w\Apache\htdocs\i3geo\mobile"
16   - sodipodi:docname="s.svg"
17   - sodipodi:version="0.32"
18   - width="18"
19   - inkscape:output_extension="org.inkscape.output.svg.inkscape"
20   - version="1.0"
21   - inkscape:export-filename="C:\ms4w\Apache\htdocs\i3geo\mobile\s.png"
22   - inkscape:export-xdpi="90"
23   - inkscape:export-ydpi="90">
24   - <metadata
25   - id="metadata6809">
26   - <rdf:RDF>
27   - <cc:Work
28   - rdf:about="">
29   - <dc:title>globe</dc:title>
30   - <dc:description>A logo for the school club</dc:description>
31   - <dc:subject>
32   - <rdf:Bag>
33   - <rdf:li>hash</rdf:li>
34   - <rdf:li />
35   - <rdf:li>geography</rdf:li>
36   - <rdf:li>nations</rdf:li>
37   - <rdf:li>extraordinary</rdf:li>
38   - </rdf:Bag>
39   - </dc:subject>
40   - <dc:publisher>
41   - <cc:Agent
42   - rdf:about="http://www.openclipart.org">
43   - <dc:title>CopyLeft</dc:title>
44   - </cc:Agent>
45   - </dc:publisher>
46   - <dc:creator>
47   - <cc:Agent>
48   - <dc:title>Jason Knight</dc:title>
49   - </cc:Agent>
50   - </dc:creator>
51   - <dc:rights>
52   - <cc:Agent>
53   - <dc:title>CopyLeft</dc:title>
54   - </cc:Agent>
55   - </dc:rights>
56   - <dc:date />
57   - <dc:format>image/svg+xml</dc:format>
58   - <dc:type
59   - rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
60   - <cc:license
61   - rdf:resource="http://web.resource.org/cc/PublicDomain" />
62   - <dc:language>en</dc:language>
63   - </cc:Work>
64   - <cc:License
65   - rdf:about="http://web.resource.org/cc/PublicDomain">
66   - <cc:permits
67   - rdf:resource="http://web.resource.org/cc/Reproduction" />
68   - <cc:permits
69   - rdf:resource="http://web.resource.org/cc/Distribution" />
70   - <cc:permits
71   - rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
72   - </cc:License>
73   - </rdf:RDF>
74   - </metadata>
75   - <defs
76   - id="defs3">
77   - <linearGradient
78   - id="linearGradient1497"
79   - x1="741.63898"
80   - x2="622.33325"
81   - xlink:href="#linearGradient1492"
82   - y1="169.4436"
83   - y2="287.73825"
84   - gradientTransform="scale(0.9552926,1.0467997)"
85   - gradientUnits="userSpaceOnUse" />
86   - <linearGradient
87   - id="linearGradient1492">
88   - <stop
89   - id="stop1493"
90   - offset="0.0000000"
91   - style="stop-color:#dadada;stop-opacity:1.0000000;" />
92   - <stop
93   - id="stop1496"
94   - offset="0.34923077"
95   - style="stop-color:#f1f1f1;stop-opacity:1.0000000;" />
96   - <stop
97   - id="stop1494"
98   - offset="1.0000000"
99   - style="stop-color:#f0f0f0;stop-opacity:1.0000000;" />
100   - </linearGradient>
101   - <linearGradient
102   - id="linearGradient1495"
103   - x1="728.96643"
104   - x2="351.7063"
105   - xlink:href="#linearGradient1492"
106   - y1="230.07422"
107   - y2="689.86005"
108   - gradientTransform="scale(0.955425,1.0466546)"
109   - gradientUnits="userSpaceOnUse" />
110   - <linearGradient
111   - id="linearGradient1507">
112   - <stop
113   - id="stop1508"
114   - offset="0.0000000"
115   - style="stop-color:#000000;stop-opacity:0.095505618;" />
116   - <stop
117   - id="stop1510"
118   - offset="1.0000000"
119   - style="stop-color:#000000;stop-opacity:0.0000000;" />
120   - </linearGradient>
121   - <linearGradient
122   - id="linearGradient1506"
123   - x1="201.38963"
124   - x2="547.80804"
125   - xlink:href="#linearGradient1507"
126   - y1="843.20789"
127   - y2="383.76529"
128   - gradientTransform="scale(0.9446888,1.0585496)"
129   - gradientUnits="userSpaceOnUse" />
130   - <linearGradient
131   - id="linearGradient37404">
132   - <stop
133   - id="stop37406"
134   - offset="0"
135   - style="stop-color:#f0e024;stop-opacity:1;" />
136   - <stop
137   - id="stop37408"
138   - offset="1.0000000"
139   - style="stop-color:#ffffff;stop-opacity:1.0000000;" />
140   - </linearGradient>
141   - <linearGradient
142   - id="linearGradient1530">
143   - <stop
144   - id="stop1531"
145   - offset="0.0000000"
146   - style="stop-color:#0000ed;stop-opacity:1.0000000;" />
147   - <stop
148   - id="stop1532"
149   - offset="1.0000000"
150   - style="stop-color:#ffffff;stop-opacity:1.0000000;" />
151   - </linearGradient>
152   - <linearGradient
153   - id="linearGradient4041"
154   - inkscape:collect="always"
155   - x1="479.26898"
156   - x2="177.53368"
157   - xlink:href="#linearGradient1530"
158   - y1="376.20236"
159   - y2="57.332264"
160   - gradientTransform="scale(0.9872805,1.0128834)"
161   - gradientUnits="userSpaceOnUse" />
162   - <linearGradient
163   - inkscape:collect="always"
164   - xlink:href="#linearGradient37404"
165   - id="linearGradient2416"
166   - gradientUnits="userSpaceOnUse"
167   - gradientTransform="scale(0.9872805,1.0128834)"
168   - x1="479.26898"
169   - y1="376.20236"
170   - x2="177.53368"
171   - y2="57.332264" />
172   - </defs>
173   - <sodipodi:namedview
174   - bordercolor="#666666"
175   - borderopacity="1.0"
176   - id="base"
177   - inkscape:cx="31.925922"
178   - inkscape:cy="10.361733"
179   - inkscape:pageopacity="0.0"
180   - inkscape:pageshadow="2"
181   - inkscape:window-height="785"
182   - inkscape:window-width="1152"
183   - inkscape:window-x="22"
184   - inkscape:window-y="22"
185   - inkscape:zoom="8.8767414"
186   - pagecolor="#ffffff"
187   - width="18px"
188   - height="18px"
189   - inkscape:current-layer="svg1" />
190   - <rect
191   - style="opacity:1;fill:#000000;fill-opacity:0;fill-rule:evenodd;stroke:#bd0000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
192   - id="rect2194"
193   - width="18.024632"
194   - height="18.362595"
195   - x="0.11265476"
196   - y="-0.19361347" />
197   - <path
198   - style="fill:#efc60f;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.32408106;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1"
199   - sodipodi:nodetypes="cccccccc"
200   - id="path1216"
201   - d="M 6.4274211,2.9375671 L 12.248206,2.9375671 L 12.248206,8.3561422 L 14.980412,8.3561422 L 9.1979307,14.699839 L 3.6074901,8.5228898 L 6.4274211,8.4883008 L 6.4274211,2.9375671 z " />
202   -</svg>