Commit e8dd930b2e4e2fb754ce3c7186ce63c8794afcd0
1 parent
e5fbe2c0
Exists in
master
and in
7 other branches
-
Showing
14 changed files
with
366 additions
and
457 deletions
Show diff stats
ferramentas/analisageometrias/index.js
1 | - | |
2 | -/*jslint plusplus:false,white:false,undef: false, rhino: true, onevar: true, evil: true */ | |
3 | - | |
4 | -/* | |
5 | -Title: Análise de Geometrias | |
6 | - | |
7 | -Permite capturar geometrias de uma ou mais camadas e executar operações de análise. | |
8 | -Após o usuário selecionar elementos de um tema, a geometria pode ser capturada, ou seja, ela é armazenada no servidor para | |
9 | -poder receber operações de análise. As operações envolvem cálculos, como área e perímetro, além de processos de cruzamento | |
10 | -entre geometrias. Após realizar uma operação, o resultado é listado ou pode ser adicionado ao mapa como uma nova camada. | |
11 | - | |
12 | -As geometrias armazenadas ficam disponíveis temporariamente, assim como o mapfile do mapa atual. | |
13 | - | |
14 | -Veja: | |
15 | - | |
16 | -<i3GEO.analise.dialogo.analisaGeometrias> | |
17 | - | |
18 | -Arquivo: | |
19 | - | |
20 | -i3geo/ferramentas/analisageometrias/index.js.php | |
21 | - | |
22 | -About: Licença | |
23 | - | |
24 | -i3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet | |
25 | - | |
26 | -Direitos Autorais Reservados (c) 2006 Ministério do Meio Ambiente Brasil | |
27 | -Desenvolvedor: Edmar Moretti edmar.moretti@gmail.com | |
28 | - | |
29 | -Este programa é software livre; você pode redistribuí-lo | |
30 | -e/ou modificá-lo sob os termos da Licença Pública Geral | |
31 | -GNU conforme publicada pela Free Software Foundation; | |
32 | - | |
33 | -Este programa é distribuído na expectativa de que seja útil, | |
34 | -porém, SEM NENHUMA GARANTIA; nem mesmo a garantia implícita | |
35 | -de COMERCIABILIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. | |
36 | -Consulte a Licença Pública Geral do GNU para mais detalhes. | |
37 | -Você deve ter recebido uma cópia da Licença Pública Geral do | |
38 | -GNU junto com este programa; se não, escreva para a | |
39 | -Free Software Foundation, Inc., no endereço | |
40 | -59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. | |
41 | -*/ | |
42 | 1 | if(typeof(i3GEOF) === 'undefined'){ |
43 | 2 | var i3GEOF = {}; |
44 | 3 | } |
... | ... | @@ -52,12 +11,6 @@ i3GEOF.analisaGeometrias = { |
52 | 11 | Objeto DOM com a imagem de aguarde existente no cabeçalho da janela. |
53 | 12 | */ |
54 | 13 | aguarde: "", |
55 | - /* | |
56 | - Para efeitos de compatibilidade antes da versão 4.7 que não tinha dicionário | |
57 | - */ | |
58 | - criaJanelaFlutuante: function(){ | |
59 | - i3GEOF.analisaGeometrias.iniciaDicionario(); | |
60 | - }, | |
61 | 14 | /** |
62 | 15 | * Template no formato mustache. E preenchido na carga do javascript com o programa dependencias.php |
63 | 16 | */ |
... | ... | @@ -70,25 +23,6 @@ i3GEOF.analisaGeometrias = { |
70 | 23 | return dicionario; |
71 | 24 | }, |
72 | 25 | /* |
73 | - Function: iniciaDicionario | |
74 | - | |
75 | - Carrega o dicionário e chama a função que inicia a ferramenta | |
76 | - | |
77 | - O Javascript é carregado com o id i3GEOF.nomedaferramenta.dicionario_script | |
78 | - */ | |
79 | - iniciaDicionario: function(){ | |
80 | - if(typeof(i3GEOF.analisaGeometrias.dicionario) === 'undefined'){ | |
81 | - i3GEO.util.scriptTag( | |
82 | - i3GEO.configura.locaplic+"/ferramentas/analisageometrias/dicionario.js", | |
83 | - "i3GEOF.analisaGeometrias.iniciaJanelaFlutuante()", | |
84 | - "i3GEOF.analisaGeometrias.dicionario_script" | |
85 | - ); | |
86 | - } | |
87 | - else{ | |
88 | - i3GEOF.analisaGeometrias.iniciaJanelaFlutuante(); | |
89 | - } | |
90 | - }, | |
91 | - /* | |
92 | 26 | Function: inicia |
93 | 27 | |
94 | 28 | Inicia a ferramenta. É chamado por criaJanelaFlutuante |
... | ... | @@ -143,12 +77,12 @@ i3GEOF.analisaGeometrias = { |
143 | 77 | g_tipoacao=""; |
144 | 78 | g_operacao=""; |
145 | 79 | i3GEOF.analisaGeometrias.ativaFoco(); |
146 | - combot = "<select style='font-size:11px;width:250px' id='i3GEOanalisageometriastipoOperacao' onchange='i3GEOF.analisaGeometrias.operacao(this)' >"; | |
80 | + combot = "<div class=styled-select><select id='i3GEOanalisageometriastipoOperacao' onchange='i3GEOF.analisaGeometrias.operacao(this)' >"; | |
147 | 81 | combot += "<option value='adiciona' >"+$trad('adiciona',i3GEOF.analisaGeometrias.dicionario)+"</option>"; |
148 | 82 | combot += "<option value='retira' >"+$trad('retira',i3GEOF.analisaGeometrias.dicionario)+"</option>"; |
149 | 83 | combot += "<option value='inverte' >"+$trad('inverte',i3GEOF.analisaGeometrias.dicionario)+"</option>"; |
150 | 84 | combot += "<option value='limpa' >"+$trad('limpa',i3GEOF.analisaGeometrias.dicionario)+"</option>"; |
151 | - combot += "</select>"; | |
85 | + combot += "</select></div>"; | |
152 | 86 | $i("i3GEOanalisageometriasoperacao").innerHTML = combot; |
153 | 87 | i3GEOF.analisaGeometrias.aguarde.visibility = "hidden"; |
154 | 88 | i3GEO.barraDeBotoes.ativaIcone("selecao"); |
... | ... | @@ -271,7 +205,7 @@ i3GEOF.analisaGeometrias = { |
271 | 205 | i3GEO.util.comboTemas( |
272 | 206 | "i3GEOanalisageometriastemasLigados", |
273 | 207 | function(retorno){ |
274 | - $i("i3GEOanalisageometriastemas").innerHTML = retorno.dados; | |
208 | + $i("i3GEOanalisageometriastemas").innerHTML = "<div class=styled-select>"+retorno.dados+"</div>"; | |
275 | 209 | if ($i("i3GEOanalisageometriastemasLigados")){ |
276 | 210 | $i("i3GEOanalisageometriastemasLigados").onchange = function(){ |
277 | 211 | i3GEO.mapa.ativaTema($i("i3GEOanalisageometriastemasLigados").value); |
... | ... | @@ -286,7 +220,7 @@ i3GEOF.analisaGeometrias = { |
286 | 220 | "", |
287 | 221 | false, |
288 | 222 | "ligados", |
289 | - "font-size: 12px;width: 250px;" | |
223 | + " " | |
290 | 224 | ); |
291 | 225 | }, |
292 | 226 | /* | ... | ... |
ferramentas/carregakml/index.js
... | ... | @@ -110,7 +110,7 @@ i3GEOF.carregakml = { |
110 | 110 | combo += "<option value='"+raiz[i].link+"'>"+raiz[i].title+"</option>"; |
111 | 111 | } |
112 | 112 | combo += "</select>"; |
113 | - $i("i3GEOcarregakmlCombo").innerHTML = combo; | |
113 | + $i("i3GEOcarregakmlCombo").innerHTML = "<div class=styled-select>"+combo+"</div>"; | |
114 | 114 | }; |
115 | 115 | i3GEO.php.listaRSSwsARRAY(monta,"KML"); |
116 | 116 | b = new YAHOO.widget.Button( | ... | ... |
ferramentas/conectargeojson/index.js
... | ... | @@ -114,7 +114,7 @@ i3GEOF.conectargeojson = { |
114 | 114 | combo += "<option value='"+raiz[i].link+"'>"+raiz[i].title+"</option>"; |
115 | 115 | } |
116 | 116 | combo += "</select>"; |
117 | - $i("i3GEOconectargeojsonCombo").innerHTML = combo; | |
117 | + $i("i3GEOconectargeojsonCombo").innerHTML = "<div class=styled-select>"+combo+"</div>"; | |
118 | 118 | }; |
119 | 119 | i3GEO.php.listaRSSwsARRAY(monta,"GEOJSON"); |
120 | 120 | b = new YAHOO.widget.Button( | ... | ... |
ferramentas/conectarwms/index.htm
... | ... | @@ -45,13 +45,14 @@ body { |
45 | 45 | <div id=textoSLD style="display:none;font-size:10px" > |
46 | 46 | <p>Opcionalmente vc pode indicar o tipo de representação que será utilizada.<br> |
47 | 47 | Não altere o tipo de representação se a camada escolhida for uma imagem (dados raster) ou se você tiver dúvidas sobre ela.<br> |
48 | - <select id=tiporep > | |
48 | + <div class=styled-select><select id=tiporep > | |
49 | 49 | <option value="">---</option> |
50 | 50 | <option value="poligonal">poligonal</option> |
51 | 51 | <option value="linear">linear</option> |
52 | 52 | <option value="pontual">pontual</option> |
53 | 53 | </select> |
54 | 54 | </div> |
55 | + </div> | |
55 | 56 | |
56 | 57 | </div> |
57 | 58 | <div id=listatemas style="display:block;position:relative;top:10px;left:0px;"> | ... | ... |
ferramentas/etiqueta/template_mst.html
1 | -<div id='i3GEOetiquetalistai' class='digitar' style='text-align: left; left: 0px; top: 0px; width: 95%; height: 120px; overflow: auto; display: block;'></div> | |
2 | -<br> | |
3 | -<p class='paragrafo'> | |
4 | - <input id='i3GEOetiquetabotao1' size='35' type='button' value='{{{aplica}}}' /> | |
5 | - <input id='i3GEOetiquetabotao2' size='35' type='button' value='{{{desativaEtiquetas}}}' /> | |
6 | -<p class='paragrafo'> | |
7 | - {{{selecionaItem}}}<br> | |
8 | 1 | \ No newline at end of file |
2 | +<div style='margin-left: 5px;'> | |
3 | + <div id='i3GEOetiquetalistai' class='digitar' style='text-align: left; left: 0px; top: 0px; width: 100%; height: 150px; overflow: auto; display: block;'></div> | |
4 | + | |
5 | + <br> | |
6 | + <p class='paragrafo'> | |
7 | + <input id='i3GEOetiquetabotao1' size='35' type='button' value='{{{aplica}}}' /> | |
8 | + <input id='i3GEOetiquetabotao2' size='35' type='button' value='{{{desativaEtiquetas}}}' /> | |
9 | + <p class='paragrafo'> | |
10 | + {{{selecionaItem}}}<br> | |
11 | + </p> | |
12 | +</div> | |
9 | 13 | \ No newline at end of file | ... | ... |
ferramentas/filtroarvore/index.js
1 | - | |
2 | -/*jslint plusplus:false,white:false,undef: false, rhino: true, onevar: true, evil: true */ | |
3 | -/* | |
4 | -Title: Filtro da árvore de camadas | |
5 | - | |
6 | -Veja: | |
7 | - | |
8 | -<i3GEO.arvoreDeCamadas.dialogo.filtro> | |
9 | - | |
10 | -Arquivo: | |
11 | - | |
12 | -i3geo/ferramentas/filtroarvore/index.js.php | |
13 | - | |
14 | -Licenca: | |
15 | - | |
16 | -GPL2 | |
17 | - | |
18 | -i3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet | |
19 | - | |
20 | -Direitos Autorais Reservados (c) 2006 Ministério do Meio Ambiente Brasil | |
21 | -Desenvolvedor: Edmar Moretti edmar.moretti@gmail.com | |
22 | - | |
23 | -Este programa é software livre; você pode redistribuí-lo | |
24 | -e/ou modificá-lo sob os termos da Licença Pública Geral | |
25 | -GNU conforme publicada pela Free Software Foundation; | |
26 | - | |
27 | -Este programa é distribuído na expectativa de que seja útil, | |
28 | -porém, SEM NENHUMA GARANTIA; nem mesmo a garantia implícita | |
29 | -de COMERCIABILIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. | |
30 | -Consulte a Licença Pública Geral do GNU para mais detalhes. | |
31 | -Você deve ter recebido uma cópia da Licença Pública Geral do | |
32 | -GNU junto com este programa; se não, escreva para a | |
33 | -Free Software Foundation, Inc., no endereço | |
34 | -59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. | |
35 | -*/ | |
36 | 1 | if(typeof(i3GEOF) === 'undefined'){ |
37 | 2 | var i3GEOF = {}; |
38 | 3 | } |
... | ... | @@ -47,12 +12,6 @@ i3GEOF.filtroarvore = { |
47 | 12 | Estilo do objeto DOM com a imagem de aguarde existente no cabeçalho da janela. |
48 | 13 | */ |
49 | 14 | aguarde: "", |
50 | - /* | |
51 | - Para efeitos de compatibilidade antes da versão 4.7 que não tinha dicionário | |
52 | - */ | |
53 | - criaJanelaFlutuante: function(){ | |
54 | - i3GEOF.filtroarvore.iniciaDicionario(); | |
55 | - }, | |
56 | 15 | /** |
57 | 16 | * Template no formato mustache. E preenchido na carga do javascript com o programa dependencias.php |
58 | 17 | */ |
... | ... | @@ -65,25 +24,6 @@ i3GEOF.filtroarvore = { |
65 | 24 | return dicionario; |
66 | 25 | }, |
67 | 26 | /* |
68 | - Function: iniciaDicionario | |
69 | - | |
70 | - Carrega o dicionário e chama a função que inicia a ferramenta | |
71 | - | |
72 | - O Javascript é carregado com o id i3GEOF.nomedaferramenta.dicionario_script | |
73 | - */ | |
74 | - iniciaDicionario: function(){ | |
75 | - if(typeof(i3GEOF.filtroarvore.dicionario) === 'undefined'){ | |
76 | - i3GEO.util.scriptTag( | |
77 | - i3GEO.configura.locaplic+"/ferramentas/filtroarvore/dicionario.js", | |
78 | - "i3GEOF.filtroarvore.iniciaJanelaFlutuante()", | |
79 | - "i3GEOF.filtroarvore.dicionario_script" | |
80 | - ); | |
81 | - } | |
82 | - else{ | |
83 | - i3GEOF.filtroarvore.iniciaJanelaFlutuante(); | |
84 | - } | |
85 | - }, | |
86 | - /* | |
87 | 27 | Function: inicia |
88 | 28 | |
89 | 29 | Inicia a ferramenta. É chamado por criaJanelaFlutuante |
... | ... | @@ -125,7 +65,7 @@ i3GEOF.filtroarvore = { |
125 | 65 | //cria a janela flutuante |
126 | 66 | titulo = $trad("t29")+" <a class=ajuda_usuario target=_blank href='" + i3GEO.configura.locaplic + "/ajuda_usuario.php?idcategoria=7&idajuda=97' > </a>"; |
127 | 67 | janela = i3GEO.janela.cria( |
128 | - "220px", | |
68 | + "260px", | |
129 | 69 | "140px", |
130 | 70 | "", |
131 | 71 | "", | ... | ... |
ferramentas/filtroarvore/template_mst.html
1 | -<p class='paragrafo'> | |
2 | - {{{selecionaFiltro}}}<br> | |
1 | +<div style='margin-left: 5px;'> | |
2 | + <p class='paragrafo'>{{{selecionaFiltro}}}</p> | |
3 | + <div class=styled-select> | |
4 | + <select onchange='i3GEO.arvoreDeCamadas.ARVORE = null;i3GEO.arvoreDeCamadas.FILTRO = this.value;i3GEO.arvoreDeCamadas.atualiza(i3GEO.arvoreDeCamadas.CAMADAS,true)'> | |
5 | + <option value='naofaznada'>---</option> | |
6 | + <option value=''>{{{removeFiltro}}}</option> | |
7 | + <option value='ligados'>{{{ligado}}}</option> | |
8 | + <option value='desligados'>{{{desligado}}}</option> | |
9 | + <option value='selecionados'>{{{comSelecao}}}</option> | |
10 | + <option value='download'>{{{permiteDownload}}}</option> | |
11 | + <option value='wms'>{{{wms}}}</option> | |
12 | + <option value='raster'>{{{raster}}}</option> | |
13 | + <option value='toponimia'>{{{apenasTexto}}}</option> | |
14 | + </select> | |
15 | + </div> | |
3 | 16 | <br> |
4 | - <select onchange='i3GEO.arvoreDeCamadas.ARVORE = null;i3GEO.arvoreDeCamadas.FILTRO = this.value;i3GEO.arvoreDeCamadas.atualiza(i3GEO.arvoreDeCamadas.CAMADAS,true)'> | |
5 | - <option value='naofaznada'>---</option> | |
6 | - <option value=''>{{{removeFiltro}}}</option> | |
7 | - <option value='ligados'>{{{ligado}}}</option> | |
8 | - <option value='desligados'>{{{desligado}}}</option> | |
9 | - <option value='selecionados'>{{{comSelecao}}}</option> | |
10 | - <option value='download'>{{{permiteDownload}}}</option> | |
11 | - <option value='wms'>{{{wms}}}</option> | |
12 | - <option value='raster'>{{{raster}}}</option> | |
13 | - <option value='toponimia'>{{{apenasTexto}}}</option> | |
14 | - </select> | |
15 | - <br> | |
16 | - <br> {{{operacao}}}<br> | |
17 | - <br> | |
18 | - <select onchange='i3GEOF.filtroarvore.lote(this)'> | |
19 | - <option value=''>---</option> | |
20 | - <option value='excluir'>{{{exclui}}}</option> | |
21 | - </select> | |
22 | 17 | \ No newline at end of file |
18 | + <p class='paragrafo'>{{{operacao}}}</p> | |
19 | + <div class=styled-select> | |
20 | + <select onchange='i3GEOF.filtroarvore.lote(this)'> | |
21 | + <option value=''>---</option> | |
22 | + <option value='excluir'>{{{exclui}}}</option> | |
23 | + </select> | |
24 | + </div> | |
25 | +</div> | |
23 | 26 | \ No newline at end of file | ... | ... |
ferramentas/gradecoord/template_mst.html
1 | -<p class='paragrafo'>{{{intervalo}}}:</p> | |
2 | - <div class='i3geoForm i3geoFormIconeEdita' > | |
1 | +<div style='margin-left: 5px'> | |
2 | + <p class='paragrafo'>{{{intervalo}}}:</p> | |
3 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
3 | 4 | <input type='text' id='i3GEOgradeCoordintervalo' value='2' /> |
4 | 5 | </div> |
5 | -<br><p class='paragrafo'>{{{cor}}}:</p> | |
6 | - <div class='i3geoForm100 i3geoFormIconeAquarela' > | |
6 | + <br> | |
7 | + <p class='paragrafo'>{{{cor}}}:</p> | |
8 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
7 | 9 | <input type='text' id='i3GEOgradeCoordcorlinha' value='' /> |
8 | 10 | </div> |
9 | -<br><p class='paragrafo'>{{{largura}}}:</p> | |
10 | - <div class='i3geoForm i3geoFormIconeEdita' > | |
11 | + <br> | |
12 | + <p class='paragrafo'>{{{largura}}}:</p> | |
13 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
11 | 14 | <input type='text' id='i3GEOgradeCoordlarguralinha' value='1' /> |
12 | 15 | </div> |
13 | -<br><p class='paragrafo'>{{{tipoLinha}}}:</p> | |
16 | + <br> | |
17 | + <p class='paragrafo'>{{{tipoLinha}}}:</p> | |
14 | 18 | <div class='styled-select'> |
15 | - <select id='i3GEOgradeCoordtipolinha'> | |
16 | - <option value='linha'>{{{solido}}}</option> | |
17 | - <option value='ferrovia-line2'>{{{tracejado}}}</option> | |
18 | - </select> | |
19 | + <select id='i3GEOgradeCoordtipolinha'> | |
20 | + <option value='linha'>{{{solido}}}</option> | |
21 | + <option value='ferrovia-line2'>{{{tracejado}}}</option> | |
22 | + </select> | |
19 | 23 | </div> |
20 | -<br><p class='paragrafo'>Inclui textos:</p> | |
24 | + <br> | |
25 | + <p class='paragrafo'>Inclui textos:</p> | |
21 | 26 | <div class='styled-select'> |
22 | - <select id='i3GEOgradeCoordincluitexto'> | |
23 | - <option value='sim'>{{{sim}}}</option> | |
24 | - <option value='nao'>{{{nao}}}</option> | |
25 | - </select> | |
27 | + <select id='i3GEOgradeCoordincluitexto'> | |
28 | + <option value='sim'>{{{sim}}}</option> | |
29 | + <option value='nao'>{{{nao}}}</option> | |
30 | + </select> | |
26 | 31 | </div> |
27 | -<br><p class='paragrafo'>{{{tamanhoTexto}}}:</p> | |
28 | - <div class='i3geoForm i3geoFormIconeEdita' > | |
32 | + <br> | |
33 | + <p class='paragrafo'>{{{tamanhoTexto}}}:</p> | |
34 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
29 | 35 | <input type='text' id='i3GEOgradeCoordtamanhotexto' value='10' /> |
30 | 36 | </div> |
31 | -<br><p class='paragrafo'>{{{fonteTexto}}}:</p> | |
32 | - <div class='styled-select' id='i3GEOgradeCoordfontef'> | |
33 | - </div> | |
34 | -<br><p class='paragrafo'>{{{corMascara}}}:</p> | |
35 | - <div class='i3geoForm100 i3geoFormIconeAquarela' > | |
37 | + <br> | |
38 | + <p class='paragrafo'>{{{fonteTexto}}}:</p> | |
39 | + <div class='styled-select' id='i3GEOgradeCoordfontef'></div> | |
40 | + <br> | |
41 | + <p class='paragrafo'>{{{corMascara}}}:</p> | |
42 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
36 | 43 | <input type='text' id='i3GEOgradeCoordmascara_i' value='' /> |
37 | 44 | </div> |
38 | -<br><p class='paragrafo'>{{{corSombra}}}:</p> | |
39 | - <div class='i3geoForm100 i3geoFormIconeAquarela' > | |
45 | + <br> | |
46 | + <p class='paragrafo'>{{{corSombra}}}:</p> | |
47 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
40 | 48 | <input type='text' id='i3GEOgradeCoordshadowcolor' value='' /> |
41 | 49 | </div> |
42 | -<br><p class='paragrafo'>{{{deslocamentoSombra}}} X:</p> | |
43 | - <div class='i3geoForm i3geoFormIconeEdita' > | |
50 | + <br> | |
51 | + <p class='paragrafo'>{{{deslocamentoSombra}}} X:</p> | |
52 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
44 | 53 | <input type='text' id='i3GEOgradeCoordshadowsizex' value='0' /> |
45 | 54 | </div> |
46 | -<br><p class='paragrafo'>{{{deslocamentoSombra}}} Y:</p> | |
47 | - <div class='i3geoForm i3geoFormIconeEdita' > | |
55 | + <br> | |
56 | + <p class='paragrafo'>{{{deslocamentoSombra}}} Y:</p> | |
57 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
48 | 58 | <input type='text' id='i3GEOgradeCoordshadowsizey' value='0' /> |
49 | 59 | </div> |
50 | -<br><p class='paragrafo'>{{{corTexto}}}:</p> | |
51 | - <div class='i3geoForm100 i3geoFormIconeAquarela' > | |
60 | + <br> | |
61 | + <p class='paragrafo'>{{{corTexto}}}:</p> | |
62 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
52 | 63 | <input type='text' id='i3GEOgradeCoordcortexto' value='' /> |
53 | 64 | </div> |
54 | 65 | |
55 | -<br> | |
56 | -<p class='paragrafo'> | |
57 | - <input id='i3GEOgradeCoordbotao1' size='10' type='button' value={{{criaGrade}}} /> | |
58 | 66 | \ No newline at end of file |
67 | + <br> | |
68 | + <p class='paragrafo'> | |
69 | + <input id='i3GEOgradeCoordbotao1' size='10' type='button' value={{{criaGrade}}} /> | |
70 | + </p> | |
71 | +</div> | |
59 | 72 | \ No newline at end of file | ... | ... |
ferramentas/opcoes_escala/template_mst.html
1 | -<p class='paragrafo'>{{{incluiNoMapa}}}:</p> | |
2 | -<div class='styled-select'> | |
3 | - <select id='i3GEOopcoesEscalastatus'> | |
4 | - <option value=3>{{{sim}}}</option> | |
5 | - <option value=1>{{{nao}}}</option> | |
6 | - <option value=0>---</option> | |
7 | - </select> | |
8 | -</div> | |
9 | -<br> | |
10 | -<p class='paragrafo'>{{{largura}}}:</p> | |
11 | -<div class='i3geoForm i3geoFormIconeEdita'> | |
12 | - <input type='text' id='i3GEOopcoesEscalaw' value='' /> | |
13 | -</div> | |
14 | -<br> | |
15 | -<p class='paragrafo'>{{{altura}}}:</p> | |
16 | -<div class='i3geoForm i3geoFormIconeEdita'> | |
17 | - <input type='text' id='i3GEOopcoesEscalah' value='' /> | |
18 | -</div> | |
19 | -<br> | |
20 | -<p class='paragrafo'>{{{unidade}}}:</p> | |
21 | -<div class='styled-select'> | |
22 | - <select id='i3GEOopcoesEscalaunidade'> | |
23 | - <option value='3' selected>Metros</option> | |
24 | - <option value='4'>Km</option> | |
25 | - </select> | |
26 | -</div> | |
27 | -<br> | |
28 | -<p class='paragrafo'>{{{estilo}}}:</p> | |
29 | -<div class='styled-select'> | |
30 | - <select id='i3GEOopcoesEscalaestilo'> | |
31 | - <option value='0' selected>{{{bloco}}}</option> | |
32 | - <option value='1'>{{{linear}}}</option> | |
33 | - <option value='2'>{{{semBarra}}}</option> | |
34 | - </select> | |
35 | -</div> | |
36 | -<br> | |
37 | -<p class='paragrafo'>{{{intervalos}}}:</p> | |
38 | -<div class='i3geoForm i3geoFormIconeEdita'> | |
39 | - <input type='text' id='i3GEOopcoesEscalaintervalos' value='' /> | |
40 | -</div> | |
41 | -<br> | |
42 | -<p class='paragrafo'>{{{cor}}}:</p> | |
43 | -<div class='i3geoForm100 i3geoFormIconeAquarela'> | |
44 | - <input type='text' id='i3GEOopcoesEscalacor' value='' /> | |
45 | -</div> | |
46 | -<br> | |
47 | -<p class='paragrafo'>{{{fundo}}}:</p> | |
48 | -<div class='i3geoForm100 i3geoFormIconeAquarela'> | |
49 | - <input type='text' id='i3GEOopcoesEscalabcor' value='' /> | |
50 | -</div> | |
51 | -<br> | |
52 | -<p class='paragrafo'>{{{contorno}}}:</p> | |
53 | -<div class='i3geoForm100 i3geoFormIconeAquarela'> | |
54 | - <input type='text' id='i3GEOopcoesEscalaocor' value='' /> | |
55 | -</div> | |
56 | -<br> | |
57 | -<p class='paragrafo'> | |
58 | - <input id='i3GEOopcoesEscalabotao1' size='20' type='button' value='{{{aplica}}}' /> | |
59 | -</p> | |
60 | -<p class='paragrafo'> | |
61 | - <input id='i3GEOopcoesEscalabotao2' size='20' type='button' value='{{{testa}}}' /> | |
62 | -</p> | |
63 | -<br> | |
64 | -<img src='' id='i3GEOopcoesEscalateste' /> | |
65 | 1 | \ No newline at end of file |
2 | +<div style='margin-left: 5px'> | |
3 | + <p class='paragrafo'>{{{incluiNoMapa}}}:</p> | |
4 | + <div class='styled-select'> | |
5 | + <select id='i3GEOopcoesEscalastatus'> | |
6 | + <option value=3>{{{sim}}}</option> | |
7 | + <option value=1>{{{nao}}}</option> | |
8 | + <option value=0>---</option> | |
9 | + </select> | |
10 | + </div> | |
11 | + <br> | |
12 | + <p class='paragrafo'>{{{largura}}}:</p> | |
13 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
14 | + <input type='text' id='i3GEOopcoesEscalaw' value='' /> | |
15 | + </div> | |
16 | + <br> | |
17 | + <p class='paragrafo'>{{{altura}}}:</p> | |
18 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
19 | + <input type='text' id='i3GEOopcoesEscalah' value='' /> | |
20 | + </div> | |
21 | + <br> | |
22 | + <p class='paragrafo'>{{{unidade}}}:</p> | |
23 | + <div class='styled-select'> | |
24 | + <select id='i3GEOopcoesEscalaunidade'> | |
25 | + <option value='3' selected>Metros</option> | |
26 | + <option value='4'>Km</option> | |
27 | + </select> | |
28 | + </div> | |
29 | + <br> | |
30 | + <p class='paragrafo'>{{{estilo}}}:</p> | |
31 | + <div class='styled-select'> | |
32 | + <select id='i3GEOopcoesEscalaestilo'> | |
33 | + <option value='0' selected>{{{bloco}}}</option> | |
34 | + <option value='1'>{{{linear}}}</option> | |
35 | + <option value='2'>{{{semBarra}}}</option> | |
36 | + </select> | |
37 | + </div> | |
38 | + <br> | |
39 | + <p class='paragrafo'>{{{intervalos}}}:</p> | |
40 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
41 | + <input type='text' id='i3GEOopcoesEscalaintervalos' value='' /> | |
42 | + </div> | |
43 | + <br> | |
44 | + <p class='paragrafo'>{{{cor}}}:</p> | |
45 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
46 | + <input type='text' id='i3GEOopcoesEscalacor' value='' /> | |
47 | + </div> | |
48 | + <br> | |
49 | + <p class='paragrafo'>{{{fundo}}}:</p> | |
50 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
51 | + <input type='text' id='i3GEOopcoesEscalabcor' value='' /> | |
52 | + </div> | |
53 | + <br> | |
54 | + <p class='paragrafo'>{{{contorno}}}:</p> | |
55 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
56 | + <input type='text' id='i3GEOopcoesEscalaocor' value='' /> | |
57 | + </div> | |
58 | + <br> | |
59 | + <p class='paragrafo'> | |
60 | + <input id='i3GEOopcoesEscalabotao1' size='20' type='button' value='{{{aplica}}}' /> | |
61 | + </p> | |
62 | + <p class='paragrafo'> | |
63 | + <input id='i3GEOopcoesEscalabotao2' size='20' type='button' value='{{{testa}}}' /> | |
64 | + </p> | |
65 | + <br> | |
66 | + <img src='' id='i3GEOopcoesEscalateste' /> | |
67 | +</div> | |
66 | 68 | \ No newline at end of file | ... | ... |
ferramentas/opcoes_fundo/template_mst.html
1 | -<div class='i3geoForm100 i3geoFormIconeAquarela'> | |
2 | - <input type='text' id='i3GEOopcoesFundocor' value='2' /> | |
3 | -</div> | |
4 | -<br> | |
5 | -<p class='paragrafo'> | |
6 | - <input size='20' id='i3GEOopcoesFundobotao1' type='button' value='{{{aplica}}}' /> | |
7 | 1 | \ No newline at end of file |
2 | +<div style='margin-left: 5px'> | |
3 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
4 | + <input type='text' id='i3GEOopcoesFundocor' value='2' /> | |
5 | + </div> | |
6 | + <br> | |
7 | + <p class='paragrafo'> | |
8 | + <input size='20' id='i3GEOopcoesFundobotao1' type='button' value='{{{aplica}}}' /> | |
9 | + </p> | |
10 | +</div> | |
8 | 11 | \ No newline at end of file | ... | ... |
ferramentas/opcoes_legenda/template_mst.html
1 | -<p class='paragrafo'>{{{incluiNoMapa}}}:</p> | |
2 | -<div class='styled-select'> | |
3 | - <select id='i3GEOopcoesLegendastatus'> | |
4 | - <option value='3'>{{{sim}}}</option> | |
5 | - <option value='1'>{{{nao}}}</option> | |
6 | - <option value='0'>---</option> | |
7 | - </select> | |
8 | -</div> | |
9 | -<br> | |
10 | -<p class='paragrafo'>{{{corFundo}}}:</p> | |
11 | -<div class='i3geoForm100 i3geoFormIconeAquarela'> | |
12 | - <input type='text' id='i3GEOopcoesLegendaimagecolor' value='' /> | |
13 | -</div> | |
14 | -<br> | |
15 | -<p class='paragrafo'>{{{contornoSimbolos}}}:</p> | |
16 | -<div class='i3geoForm100 i3geoFormIconeAquarela'> | |
17 | - <input type='text' id='i3GEOopcoesLegendaoutlinecolor' value='' /> | |
18 | -</div> | |
19 | -<br> | |
20 | -<p class='paragrafo'>{{{posicao}}}:</p> | |
21 | -<div class='styled-select'> | |
22 | - <select id='i3GEOopcoesLegendaposition'> | |
23 | - <option value='101'>{{{supEsquerdo}}}</option> | |
24 | - <option value='107'>{{{supCentro}}}</option> | |
25 | - <option value='103' selected>{{{supDireito}}}</option> | |
26 | - <option value='104'>{{{infEsquerdo}}}</option> | |
27 | - <option value='108'>{{{infCentro}}}</option> | |
28 | - <option value='102'>{{{infDireito}}}</option> | |
29 | - </select> | |
30 | -</div> | |
31 | -<br> | |
32 | -<p class='paragrafo'>{{{espacamentoY}}}:</p> | |
33 | -<div class='i3geoForm i3geoFormIconeEdita'> | |
34 | - <input type='text' id='i3GEOopcoesLegendakeyspacingy' value='' /> | |
35 | -</div> | |
36 | -<br> | |
37 | -<p class='paragrafo'>{{{espacamentoX}}}:</p> | |
38 | -<div class='i3geoForm i3geoFormIconeEdita'> | |
39 | - <input type='text' id='i3GEOopcoesLegendakeyspacingx' value='' /> | |
40 | -</div> | |
41 | -<br> | |
42 | -<p class='paragrafo'>{{{tamanhoSimboloY}}}:</p> | |
43 | -<div class='i3geoForm i3geoFormIconeEdita'> | |
44 | - <input type='text' id='i3GEOopcoesLegendakeysizey' value='' /> | |
45 | -</div> | |
46 | -<br> | |
47 | -<p class='paragrafo'>{{{tamanhoSimboloX}}}:</p> | |
48 | -<div class='i3geoForm i3geoFormIconeEdita'> | |
49 | - <input type='text' id='i3GEOopcoesLegendakeysizex' value='' /> | |
50 | -</div> | |
51 | -<br> | |
52 | -<p class='paragrafo'>{{{tamanhoTexto}}}:</p> | |
53 | -<div class='i3geoForm i3geoFormIconeEdita'> | |
54 | - <input type='text' id='i3GEOopcoesLegendalabelsize' value='' /> | |
55 | -</div> | |
56 | -<br> | |
57 | -<p class='paragrafo'>{{{fonte}}}:</p> | |
58 | -<div class='styled-select' id='i3GEOopcoesLegendafontef'></div> | |
1 | +<div style='margin-left: 5px'> | |
2 | + <p class='paragrafo'>{{{incluiNoMapa}}}:</p> | |
3 | + <div class='styled-select'> | |
4 | + <select id='i3GEOopcoesLegendastatus'> | |
5 | + <option value='3'>{{{sim}}}</option> | |
6 | + <option value='1'>{{{nao}}}</option> | |
7 | + <option value='0'>---</option> | |
8 | + </select> | |
9 | + </div> | |
10 | + <br> | |
11 | + <p class='paragrafo'>{{{corFundo}}}:</p> | |
12 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
13 | + <input type='text' id='i3GEOopcoesLegendaimagecolor' value='' /> | |
14 | + </div> | |
15 | + <br> | |
16 | + <p class='paragrafo'>{{{contornoSimbolos}}}:</p> | |
17 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
18 | + <input type='text' id='i3GEOopcoesLegendaoutlinecolor' value='' /> | |
19 | + </div> | |
20 | + <br> | |
21 | + <p class='paragrafo'>{{{posicao}}}:</p> | |
22 | + <div class='styled-select'> | |
23 | + <select id='i3GEOopcoesLegendaposition'> | |
24 | + <option value='101'>{{{supEsquerdo}}}</option> | |
25 | + <option value='107'>{{{supCentro}}}</option> | |
26 | + <option value='103' selected>{{{supDireito}}}</option> | |
27 | + <option value='104'>{{{infEsquerdo}}}</option> | |
28 | + <option value='108'>{{{infCentro}}}</option> | |
29 | + <option value='102'>{{{infDireito}}}</option> | |
30 | + </select> | |
31 | + </div> | |
32 | + <br> | |
33 | + <p class='paragrafo'>{{{espacamentoY}}}:</p> | |
34 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
35 | + <input type='text' id='i3GEOopcoesLegendakeyspacingy' value='' /> | |
36 | + </div> | |
37 | + <br> | |
38 | + <p class='paragrafo'>{{{espacamentoX}}}:</p> | |
39 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
40 | + <input type='text' id='i3GEOopcoesLegendakeyspacingx' value='' /> | |
41 | + </div> | |
42 | + <br> | |
43 | + <p class='paragrafo'>{{{tamanhoSimboloY}}}:</p> | |
44 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
45 | + <input type='text' id='i3GEOopcoesLegendakeysizey' value='' /> | |
46 | + </div> | |
47 | + <br> | |
48 | + <p class='paragrafo'>{{{tamanhoSimboloX}}}:</p> | |
49 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
50 | + <input type='text' id='i3GEOopcoesLegendakeysizex' value='' /> | |
51 | + </div> | |
52 | + <br> | |
53 | + <p class='paragrafo'>{{{tamanhoTexto}}}:</p> | |
54 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
55 | + <input type='text' id='i3GEOopcoesLegendalabelsize' value='' /> | |
56 | + </div> | |
57 | + <br> | |
58 | + <p class='paragrafo'>{{{fonte}}}:</p> | |
59 | + <div class='styled-select' id='i3GEOopcoesLegendafontef'></div> | |
59 | 60 | |
60 | -<br> | |
61 | -<p class='paragrafo'> | |
62 | - <input id='i3GEOopcoesLegendabotao1' size='20' type='button' value='{{{aplica}}}' /> | |
63 | -</p> | |
64 | -<br> | |
65 | -<p class='paragrafo'> | |
66 | - <input id='i3GEOopcoesLegendabotao2' size='20' type='button' value='{{{testa}}}' /> | |
67 | -</p> | |
68 | -<br> | |
69 | -<img alt='teste' src='' id='i3GEOopcoesLegendatesteLegenda' style='display: none' /> | |
70 | 61 | \ No newline at end of file |
62 | + <br> | |
63 | + <p class='paragrafo'> | |
64 | + <input id='i3GEOopcoesLegendabotao1' size='20' type='button' value='{{{aplica}}}' /> | |
65 | + </p> | |
66 | + <br> | |
67 | + <p class='paragrafo'> | |
68 | + <input id='i3GEOopcoesLegendabotao2' size='20' type='button' value='{{{testa}}}' /> | |
69 | + </p> | |
70 | + <br> | |
71 | + <img alt='teste' src='' id='i3GEOopcoesLegendatesteLegenda' style='display: none' /> | |
72 | +</div> | |
71 | 73 | \ No newline at end of file | ... | ... |
ferramentas/opcoes_querymap/template_mst.html
1 | -<div class='i3geoForm100 i3geoFormIconeAquarela'> | |
2 | - <input type='text' id='i3GEOopcoesQuerycor' value='' /> | |
3 | -</div> | |
4 | -<br> | |
5 | -<p class='paragrafo'> | |
6 | - <input size='20' id='i3GEOopcoesQuerybotao1' type='button' value='{{{aplica}}}' /> | |
7 | 1 | \ No newline at end of file |
2 | +<div style='margin-left: 5px'> | |
3 | + <div class='i3geoForm100 i3geoFormIconeAquarela'> | |
4 | + <input type='text' id='i3GEOopcoesQuerycor' value='' /> | |
5 | + </div> | |
6 | + <br> | |
7 | + <p class='paragrafo'> | |
8 | + <input size='20' id='i3GEOopcoesQuerybotao1' type='button' value='{{{aplica}}}' /> | |
9 | + </p> | |
10 | +</div> | |
8 | 11 | \ No newline at end of file | ... | ... |
ferramentas/opcoes_tamanho/template_mst.html
1 | -<p class='paragrafo'>{{{largura}}}:</p> | |
2 | -<div class='i3geoForm150 i3geoFormIconeEdita'> | |
3 | - <input type='text' value='{{{Tamanhol}}}' id='i3GEOopcoesTamanhol' /> | |
4 | -</div> | |
5 | -<br> | |
6 | -<p class='paragrafo'>{{{altura}}}:</p> | |
7 | -<div class='i3geoForm150 i3geoFormIconeEdita'> | |
8 | - <input type='text' value='{{{Tamanhoa}}}' id='i3GEOopcoesTamanhoa' /> | |
9 | -</div> | |
1 | +<div style='margin-left: 5px'> | |
2 | + <p class='paragrafo'>{{{largura}}}:</p> | |
3 | + <div class='i3geoForm150 i3geoFormIconeEdita'> | |
4 | + <input type='text' value='{{{Tamanhol}}}' id='i3GEOopcoesTamanhol' /> | |
5 | + </div> | |
6 | + <br> | |
7 | + <p class='paragrafo'>{{{altura}}}:</p> | |
8 | + <div class='i3geoForm150 i3geoFormIconeEdita'> | |
9 | + <input type='text' value='{{{Tamanhoa}}}' id='i3GEOopcoesTamanhoa' /> | |
10 | + </div> | |
10 | 11 | |
11 | -<br> | |
12 | -<p class='paragrafo'>{{{valor}}}</p> | |
13 | -<p class='paragrafo'> | |
14 | - <input id='i3GEOopcoesTamanhobotao2' size='16' type='button' value='{{{testa}}}' /> | |
15 | -</p> | |
16 | -<p class='paragrafo'> | |
17 | - <input id='i3GEOopcoesTamanhobotao1' size='16' type='button' value='{{{aplica}}}' /> | |
18 | -</p> | |
19 | 12 | \ No newline at end of file |
13 | + <br> | |
14 | + <p class='paragrafo'>{{{valor}}}</p> | |
15 | + <p class='paragrafo'> | |
16 | + <input id='i3GEOopcoesTamanhobotao2' size='16' type='button' value='{{{testa}}}' /> | |
17 | + </p> | |
18 | + <p class='paragrafo'> | |
19 | + <input id='i3GEOopcoesTamanhobotao1' size='16' type='button' value='{{{aplica}}}' /> | |
20 | + </p> | |
21 | +</div> | |
20 | 22 | \ No newline at end of file | ... | ... |
ferramentas/tipoimagem/template_mst.html
1 | -<p class='paragrafo'>{{{selecionaFiltro}}}</p> | |
2 | -<div class='i3geoForm i3geoFormIconeEdita'> | |
3 | -<input type='text' size='29' value='' id='i3GEOFtipoImagemListaDeFiltros' style='position: relative; top: -2px' /> | |
4 | -</div> | |
5 | -<br><p class='paragrafo'> | |
6 | -<input id='i3GEOFtipoImagemListaDeFiltrosOk' type='button' value='{{{aplica}}}' size='20' /> | |
7 | -</p> | |
8 | -<br> | |
9 | -<br> | |
10 | -<table class='lista6' style='width: 200px'> | |
11 | - <tr> | |
12 | - <td> | |
13 | - <input onclick='javascript:$i({{{asp}}}i3GEOFtipoImagemListaDeFiltros{{{asp}}}).value = {{{asp}}}{{{asp}}}' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='nenhum'> | |
14 | - </td> | |
15 | - <td>{{{nenhum}}}</td> | |
16 | - <td> | |
17 | - <img onclick='javascript:$i({{{asp}}}i3GEOFtipoImagemListaDeFiltros{{{asp}}}).value = {{{asp}}}{{{asp}}}' src='{{{locaplic}}}/imagens/filtro_nenhum.png' /> | |
18 | - </td> | |
19 | - </tr> | |
20 | - <tr> | |
21 | - <td> | |
22 | - <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}cinza{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='cinza'> | |
23 | - </td> | |
24 | - <td>{{{tonsCinza}}}</td> | |
25 | - <td> | |
26 | - <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}cinza{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_cinza.png' /> | |
27 | - </td> | |
28 | - </tr> | |
29 | - <tr> | |
30 | - <td> | |
31 | - <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}sepiaclara{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='sepiaclara'> | |
32 | - </td> | |
33 | - <td>{{{sepiaClara}}}</td> | |
34 | - <td> | |
35 | - <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}sepiaclara{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_sepiaclara.png' /> | |
36 | - </td> | |
37 | - </tr> | |
38 | - <tr> | |
39 | - <td> | |
40 | - <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}sepianormal{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='sepianormal'> | |
41 | - </td> | |
42 | - <td>{{{sepiaNormal}}}</td> | |
43 | - <td> | |
44 | - <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}sepianormal{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_sepianormal.png' /> | |
45 | - </td> | |
46 | - </tr> | |
47 | - <tr> | |
48 | - <td> | |
49 | - <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}negativo{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='negativo'> | |
50 | - </td> | |
51 | - <td>{{{negativo}}}</td> | |
52 | - <td> | |
53 | - <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}negativo{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_negativo.png' /> | |
54 | - </td> | |
55 | - </tr> | |
56 | - <tr> | |
57 | - <td> | |
58 | - <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}detectaBordas{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='detectaBordas'> | |
59 | - </td> | |
60 | - <td>{{{detectaBordas}}}</td> | |
61 | - <td> | |
62 | - <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}detectaBordas{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_detectabordas.png' /> | |
63 | - </td> | |
64 | - </tr> | |
65 | - <tr> | |
66 | - <td> | |
67 | - <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}embassa{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='embassa'> | |
68 | - </td> | |
69 | - <td>emboss</td> | |
70 | - <td> | |
71 | - <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}embassa{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_embassa.png' /> | |
72 | - </td> | |
73 | - </tr> | |
74 | - <tr> | |
75 | - <td> | |
76 | - <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}gaussian_blur{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='gaussian_blur'> | |
77 | - </td> | |
78 | - <td>gaussian blur</td> | |
79 | - <td> | |
80 | - <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}gaussian_blur{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_gaussianblur.png' /> | |
81 | - </td> | |
82 | - </tr> | |
83 | - <tr> | |
84 | - <td> | |
85 | - <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}selective_blur{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='selective_blur'> | |
86 | - </td> | |
87 | - <td>selective blur</td> | |
88 | - <td> | |
89 | - <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}selective_blur{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_selectiveblur.png' /> | |
90 | - </td> | |
91 | - </tr> | |
92 | - <tr> | |
93 | - <td> | |
94 | - <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}mean_removal{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='mean_removal'> | |
95 | - </td> | |
96 | - <td>mean removal</td> | |
97 | - <td> | |
98 | - <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}mean_removal{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_meanremoval.png' /> | |
99 | - </td> | |
100 | - </tr> | |
101 | -</table> | |
102 | 1 | \ No newline at end of file |
2 | +<div style='margin-left: 5px'> | |
3 | + <p class='paragrafo'>{{{selecionaFiltro}}}</p> | |
4 | + <div class='i3geoForm i3geoFormIconeEdita'> | |
5 | + <input type='text' size='29' value='' id='i3GEOFtipoImagemListaDeFiltros' style='position: relative; top: -2px' /> | |
6 | + </div> | |
7 | + <br> | |
8 | + <p class='paragrafo'> | |
9 | + <input id='i3GEOFtipoImagemListaDeFiltrosOk' type='button' value='{{{aplica}}}' size='20' /> | |
10 | + </p> | |
11 | + <br> <br> | |
12 | + <table class='lista6' style='width: 200px'> | |
13 | + <tr> | |
14 | + <td> | |
15 | + <input onclick='javascript:$i({{{asp}}}i3GEOFtipoImagemListaDeFiltros{{{asp}}}).value = {{{asp}}}{{{asp}}}' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='nenhum'> | |
16 | + </td> | |
17 | + <td>{{{nenhum}}}</td> | |
18 | + <td> | |
19 | + <img onclick='javascript:$i({{{asp}}}i3GEOFtipoImagemListaDeFiltros{{{asp}}}).value = {{{asp}}}{{{asp}}}' src='{{{locaplic}}}/imagens/filtro_nenhum.png' /> | |
20 | + </td> | |
21 | + </tr> | |
22 | + <tr> | |
23 | + <td> | |
24 | + <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}cinza{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='cinza'> | |
25 | + </td> | |
26 | + <td>{{{tonsCinza}}}</td> | |
27 | + <td> | |
28 | + <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}cinza{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_cinza.png' /> | |
29 | + </td> | |
30 | + </tr> | |
31 | + <tr> | |
32 | + <td> | |
33 | + <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}sepiaclara{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='sepiaclara'> | |
34 | + </td> | |
35 | + <td>{{{sepiaClara}}}</td> | |
36 | + <td> | |
37 | + <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}sepiaclara{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_sepiaclara.png' /> | |
38 | + </td> | |
39 | + </tr> | |
40 | + <tr> | |
41 | + <td> | |
42 | + <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}sepianormal{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='sepianormal'> | |
43 | + </td> | |
44 | + <td>{{{sepiaNormal}}}</td> | |
45 | + <td> | |
46 | + <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}sepianormal{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_sepianormal.png' /> | |
47 | + </td> | |
48 | + </tr> | |
49 | + <tr> | |
50 | + <td> | |
51 | + <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}negativo{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='negativo'> | |
52 | + </td> | |
53 | + <td>{{{negativo}}}</td> | |
54 | + <td> | |
55 | + <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}negativo{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_negativo.png' /> | |
56 | + </td> | |
57 | + </tr> | |
58 | + <tr> | |
59 | + <td> | |
60 | + <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}detectaBordas{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='detectaBordas'> | |
61 | + </td> | |
62 | + <td>{{{detectaBordas}}}</td> | |
63 | + <td> | |
64 | + <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}detectaBordas{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_detectabordas.png' /> | |
65 | + </td> | |
66 | + </tr> | |
67 | + <tr> | |
68 | + <td> | |
69 | + <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}embassa{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='embassa'> | |
70 | + </td> | |
71 | + <td>emboss</td> | |
72 | + <td> | |
73 | + <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}embassa{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_embassa.png' /> | |
74 | + </td> | |
75 | + </tr> | |
76 | + <tr> | |
77 | + <td> | |
78 | + <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}gaussian_blur{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='gaussian_blur'> | |
79 | + </td> | |
80 | + <td>gaussian blur</td> | |
81 | + <td> | |
82 | + <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}gaussian_blur{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_gaussianblur.png' /> | |
83 | + </td> | |
84 | + </tr> | |
85 | + <tr> | |
86 | + <td> | |
87 | + <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}selective_blur{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='selective_blur'> | |
88 | + </td> | |
89 | + <td>selective blur</td> | |
90 | + <td> | |
91 | + <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}selective_blur{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_selectiveblur.png' /> | |
92 | + </td> | |
93 | + </tr> | |
94 | + <tr> | |
95 | + <td> | |
96 | + <input onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}mean_removal{{{asp}}})' style='cursor: pointer; border: 0px solid white;' type='radio' name='i3GEOtipoimagemtipo' value='mean_removal'> | |
97 | + </td> | |
98 | + <td>mean removal</td> | |
99 | + <td> | |
100 | + <img onclick='i3GEOF.tipoimagem.adicionar({{{asp}}}mean_removal{{{asp}}})' src='{{{locaplic}}}/imagens/filtro_meanremoval.png' /> | |
101 | + </td> | |
102 | + </tr> | |
103 | + </table> | |
104 | +</div> | |
103 | 105 | \ No newline at end of file | ... | ... |