diff --git a/ferramentas/analisageometrias/index.js b/ferramentas/analisageometrias/index.js index dc6b332..cd26fb4 100644 --- a/ferramentas/analisageometrias/index.js +++ b/ferramentas/analisageometrias/index.js @@ -1,44 +1,3 @@ - -/*jslint plusplus:false,white:false,undef: false, rhino: true, onevar: true, evil: true */ - -/* -Title: Análise de Geometrias - -Permite capturar geometrias de uma ou mais camadas e executar operações de análise. -Após o usuário selecionar elementos de um tema, a geometria pode ser capturada, ou seja, ela é armazenada no servidor para -poder receber operações de análise. As operações envolvem cálculos, como área e perímetro, além de processos de cruzamento -entre geometrias. Após realizar uma operação, o resultado é listado ou pode ser adicionado ao mapa como uma nova camada. - -As geometrias armazenadas ficam disponíveis temporariamente, assim como o mapfile do mapa atual. - -Veja: - - - -Arquivo: - -i3geo/ferramentas/analisageometrias/index.js.php - -About: Licença - -i3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet - -Direitos Autorais Reservados (c) 2006 Ministério do Meio Ambiente Brasil -Desenvolvedor: Edmar Moretti edmar.moretti@gmail.com - -Este programa é software livre; você pode redistribuí-lo -e/ou modificá-lo sob os termos da Licença Pública Geral -GNU conforme publicada pela Free Software Foundation; - -Este programa é distribuído na expectativa de que seja útil, -porém, SEM NENHUMA GARANTIA; nem mesmo a garantia implícita -de COMERCIABILIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. -Consulte a Licença Pública Geral do GNU para mais detalhes. -Você deve ter recebido uma cópia da Licença Pública Geral do -GNU junto com este programa; se não, escreva para a -Free Software Foundation, Inc., no endereço -59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. -*/ if(typeof(i3GEOF) === 'undefined'){ var i3GEOF = {}; } @@ -52,12 +11,6 @@ i3GEOF.analisaGeometrias = { Objeto DOM com a imagem de aguarde existente no cabeçalho da janela. */ aguarde: "", - /* - Para efeitos de compatibilidade antes da versão 4.7 que não tinha dicionário - */ - criaJanelaFlutuante: function(){ - i3GEOF.analisaGeometrias.iniciaDicionario(); - }, /** * Template no formato mustache. E preenchido na carga do javascript com o programa dependencias.php */ @@ -70,25 +23,6 @@ i3GEOF.analisaGeometrias = { return dicionario; }, /* - Function: iniciaDicionario - - Carrega o dicionário e chama a função que inicia a ferramenta - - O Javascript é carregado com o id i3GEOF.nomedaferramenta.dicionario_script - */ - iniciaDicionario: function(){ - if(typeof(i3GEOF.analisaGeometrias.dicionario) === 'undefined'){ - i3GEO.util.scriptTag( - i3GEO.configura.locaplic+"/ferramentas/analisageometrias/dicionario.js", - "i3GEOF.analisaGeometrias.iniciaJanelaFlutuante()", - "i3GEOF.analisaGeometrias.dicionario_script" - ); - } - else{ - i3GEOF.analisaGeometrias.iniciaJanelaFlutuante(); - } - }, - /* Function: inicia Inicia a ferramenta. É chamado por criaJanelaFlutuante @@ -143,12 +77,12 @@ i3GEOF.analisaGeometrias = { g_tipoacao=""; g_operacao=""; i3GEOF.analisaGeometrias.ativaFoco(); - combot = ""; combot += ""; combot += ""; combot += ""; combot += ""; - combot += ""; + combot += ""; $i("i3GEOanalisageometriasoperacao").innerHTML = combot; i3GEOF.analisaGeometrias.aguarde.visibility = "hidden"; i3GEO.barraDeBotoes.ativaIcone("selecao"); @@ -271,7 +205,7 @@ i3GEOF.analisaGeometrias = { i3GEO.util.comboTemas( "i3GEOanalisageometriastemasLigados", function(retorno){ - $i("i3GEOanalisageometriastemas").innerHTML = retorno.dados; + $i("i3GEOanalisageometriastemas").innerHTML = "
"+retorno.dados+"
"; if ($i("i3GEOanalisageometriastemasLigados")){ $i("i3GEOanalisageometriastemasLigados").onchange = function(){ i3GEO.mapa.ativaTema($i("i3GEOanalisageometriastemasLigados").value); @@ -286,7 +220,7 @@ i3GEOF.analisaGeometrias = { "", false, "ligados", - "font-size: 12px;width: 250px;" + " " ); }, /* diff --git a/ferramentas/carregakml/index.js b/ferramentas/carregakml/index.js index 59efe01..cc571d9 100644 --- a/ferramentas/carregakml/index.js +++ b/ferramentas/carregakml/index.js @@ -110,7 +110,7 @@ i3GEOF.carregakml = { combo += ""; } combo += ""; - $i("i3GEOcarregakmlCombo").innerHTML = combo; + $i("i3GEOcarregakmlCombo").innerHTML = "
"+combo+"
"; }; i3GEO.php.listaRSSwsARRAY(monta,"KML"); b = new YAHOO.widget.Button( diff --git a/ferramentas/conectargeojson/index.js b/ferramentas/conectargeojson/index.js index baa3877..c6a5e00 100644 --- a/ferramentas/conectargeojson/index.js +++ b/ferramentas/conectargeojson/index.js @@ -114,7 +114,7 @@ i3GEOF.conectargeojson = { combo += ""; } combo += ""; - $i("i3GEOconectargeojsonCombo").innerHTML = combo; + $i("i3GEOconectargeojsonCombo").innerHTML = "
"+combo+"
"; }; i3GEO.php.listaRSSwsARRAY(monta,"GEOJSON"); b = new YAHOO.widget.Button( diff --git a/ferramentas/conectarwms/index.htm b/ferramentas/conectarwms/index.htm index 8c242b0..78b7a52 100644 --- a/ferramentas/conectarwms/index.htm +++ b/ferramentas/conectarwms/index.htm @@ -45,13 +45,14 @@ body { +
diff --git a/ferramentas/etiqueta/template_mst.html b/ferramentas/etiqueta/template_mst.html index a4530e9..465acff 100644 --- a/ferramentas/etiqueta/template_mst.html +++ b/ferramentas/etiqueta/template_mst.html @@ -1,7 +1,11 @@ -
-
-

- - -

- {{{selecionaItem}}}
\ No newline at end of file +

+
+ +
+

+ + +

+ {{{selecionaItem}}}
+

+
\ No newline at end of file diff --git a/ferramentas/filtroarvore/index.js b/ferramentas/filtroarvore/index.js index 47d05f0..4edec3b 100644 --- a/ferramentas/filtroarvore/index.js +++ b/ferramentas/filtroarvore/index.js @@ -1,38 +1,3 @@ - -/*jslint plusplus:false,white:false,undef: false, rhino: true, onevar: true, evil: true */ -/* -Title: Filtro da árvore de camadas - -Veja: - - - -Arquivo: - -i3geo/ferramentas/filtroarvore/index.js.php - -Licenca: - -GPL2 - -i3Geo Interface Integrada de Ferramentas de Geoprocessamento para Internet - -Direitos Autorais Reservados (c) 2006 Ministério do Meio Ambiente Brasil -Desenvolvedor: Edmar Moretti edmar.moretti@gmail.com - -Este programa é software livre; você pode redistribuí-lo -e/ou modificá-lo sob os termos da Licença Pública Geral -GNU conforme publicada pela Free Software Foundation; - -Este programa é distribuído na expectativa de que seja útil, -porém, SEM NENHUMA GARANTIA; nem mesmo a garantia implícita -de COMERCIABILIDADE OU ADEQUAÇÃO A UMA FINALIDADE ESPECÍFICA. -Consulte a Licença Pública Geral do GNU para mais detalhes. -Você deve ter recebido uma cópia da Licença Pública Geral do -GNU junto com este programa; se não, escreva para a -Free Software Foundation, Inc., no endereço -59 Temple Street, Suite 330, Boston, MA 02111-1307 USA. -*/ if(typeof(i3GEOF) === 'undefined'){ var i3GEOF = {}; } @@ -47,12 +12,6 @@ i3GEOF.filtroarvore = { Estilo do objeto DOM com a imagem de aguarde existente no cabeçalho da janela. */ aguarde: "", - /* - Para efeitos de compatibilidade antes da versão 4.7 que não tinha dicionário - */ - criaJanelaFlutuante: function(){ - i3GEOF.filtroarvore.iniciaDicionario(); - }, /** * Template no formato mustache. E preenchido na carga do javascript com o programa dependencias.php */ @@ -65,25 +24,6 @@ i3GEOF.filtroarvore = { return dicionario; }, /* - Function: iniciaDicionario - - Carrega o dicionário e chama a função que inicia a ferramenta - - O Javascript é carregado com o id i3GEOF.nomedaferramenta.dicionario_script - */ - iniciaDicionario: function(){ - if(typeof(i3GEOF.filtroarvore.dicionario) === 'undefined'){ - i3GEO.util.scriptTag( - i3GEO.configura.locaplic+"/ferramentas/filtroarvore/dicionario.js", - "i3GEOF.filtroarvore.iniciaJanelaFlutuante()", - "i3GEOF.filtroarvore.dicionario_script" - ); - } - else{ - i3GEOF.filtroarvore.iniciaJanelaFlutuante(); - } - }, - /* Function: inicia Inicia a ferramenta. É chamado por criaJanelaFlutuante @@ -125,7 +65,7 @@ i3GEOF.filtroarvore = { //cria a janela flutuante titulo = $trad("t29")+"    "; janela = i3GEO.janela.cria( - "220px", + "260px", "140px", "", "", diff --git a/ferramentas/filtroarvore/template_mst.html b/ferramentas/filtroarvore/template_mst.html index a49e988..2f1af90 100644 --- a/ferramentas/filtroarvore/template_mst.html +++ b/ferramentas/filtroarvore/template_mst.html @@ -1,21 +1,24 @@ -

- {{{selecionaFiltro}}}
+

+

{{{selecionaFiltro}}}

+
+ +

- -
-
{{{operacao}}}
-
- \ No newline at end of file +

{{{operacao}}}

+
+ +
+
\ No newline at end of file diff --git a/ferramentas/gradecoord/template_mst.html b/ferramentas/gradecoord/template_mst.html index e89ef60..ba93d94 100644 --- a/ferramentas/gradecoord/template_mst.html +++ b/ferramentas/gradecoord/template_mst.html @@ -1,57 +1,70 @@ -

{{{intervalo}}}:

-
+
+

{{{intervalo}}}:

+
-

{{{cor}}}:

-
+
+

{{{cor}}}:

+
-

{{{largura}}}:

-
+
+

{{{largura}}}:

+
-

{{{tipoLinha}}}:

+
+

{{{tipoLinha}}}:

- +
-

Inclui textos:

+
+

Inclui textos:

- +
-

{{{tamanhoTexto}}}:

-
+
+

{{{tamanhoTexto}}}:

+
-

{{{fonteTexto}}}:

-
-
-

{{{corMascara}}}:

-
+
+

{{{fonteTexto}}}:

+
+
+

{{{corMascara}}}:

+
-

{{{corSombra}}}:

-
+
+

{{{corSombra}}}:

+
-

{{{deslocamentoSombra}}} X:

-
+
+

{{{deslocamentoSombra}}} X:

+
-

{{{deslocamentoSombra}}} Y:

-
+
+

{{{deslocamentoSombra}}} Y:

+
-

{{{corTexto}}}:

-
+
+

{{{corTexto}}}:

+
-
-

- \ No newline at end of file +
+

+ +

+
\ No newline at end of file diff --git a/ferramentas/opcoes_escala/template_mst.html b/ferramentas/opcoes_escala/template_mst.html index 01d460e..1d976d6 100644 --- a/ferramentas/opcoes_escala/template_mst.html +++ b/ferramentas/opcoes_escala/template_mst.html @@ -1,64 +1,66 @@ -

{{{incluiNoMapa}}}:

-
- -
-
-

{{{largura}}}:

-
- -
-
-

{{{altura}}}:

-
- -
-
-

{{{unidade}}}:

-
- -
-
-

{{{estilo}}}:

-
- -
-
-

{{{intervalos}}}:

-
- -
-
-

{{{cor}}}:

-
- -
-
-

{{{fundo}}}:

-
- -
-
-

{{{contorno}}}:

-
- -
-
-

- -

-

- -

-
- \ No newline at end of file +
+

{{{incluiNoMapa}}}:

+
+ +
+
+

{{{largura}}}:

+
+ +
+
+

{{{altura}}}:

+
+ +
+
+

{{{unidade}}}:

+
+ +
+
+

{{{estilo}}}:

+
+ +
+
+

{{{intervalos}}}:

+
+ +
+
+

{{{cor}}}:

+
+ +
+
+

{{{fundo}}}:

+
+ +
+
+

{{{contorno}}}:

+
+ +
+
+

+ +

+

+ +

+
+ +
\ No newline at end of file diff --git a/ferramentas/opcoes_fundo/template_mst.html b/ferramentas/opcoes_fundo/template_mst.html index 33c6283..81a05d3 100644 --- a/ferramentas/opcoes_fundo/template_mst.html +++ b/ferramentas/opcoes_fundo/template_mst.html @@ -1,6 +1,9 @@ -
- -
-
-

- \ No newline at end of file +

+
+ +
+
+

+ +

+
\ No newline at end of file diff --git a/ferramentas/opcoes_legenda/template_mst.html b/ferramentas/opcoes_legenda/template_mst.html index 846a098..1980cb2 100644 --- a/ferramentas/opcoes_legenda/template_mst.html +++ b/ferramentas/opcoes_legenda/template_mst.html @@ -1,69 +1,71 @@ -

{{{incluiNoMapa}}}:

-
- -
-
-

{{{corFundo}}}:

-
- -
-
-

{{{contornoSimbolos}}}:

-
- -
-
-

{{{posicao}}}:

-
- -
-
-

{{{espacamentoY}}}:

-
- -
-
-

{{{espacamentoX}}}:

-
- -
-
-

{{{tamanhoSimboloY}}}:

-
- -
-
-

{{{tamanhoSimboloX}}}:

-
- -
-
-

{{{tamanhoTexto}}}:

-
- -
-
-

{{{fonte}}}:

-
+
+

{{{incluiNoMapa}}}:

+
+ +
+
+

{{{corFundo}}}:

+
+ +
+
+

{{{contornoSimbolos}}}:

+
+ +
+
+

{{{posicao}}}:

+
+ +
+
+

{{{espacamentoY}}}:

+
+ +
+
+

{{{espacamentoX}}}:

+
+ +
+
+

{{{tamanhoSimboloY}}}:

+
+ +
+
+

{{{tamanhoSimboloX}}}:

+
+ +
+
+

{{{tamanhoTexto}}}:

+
+ +
+
+

{{{fonte}}}:

+
-
-

- -

-
-

- -

-
- \ No newline at end of file +
+

+ +

+
+

+ +

+
+ +
\ No newline at end of file diff --git a/ferramentas/opcoes_querymap/template_mst.html b/ferramentas/opcoes_querymap/template_mst.html index 0d26fe3..5321ed2 100644 --- a/ferramentas/opcoes_querymap/template_mst.html +++ b/ferramentas/opcoes_querymap/template_mst.html @@ -1,6 +1,9 @@ -
- -
-
-

- \ No newline at end of file +

+
+ +
+
+

+ +

+
\ No newline at end of file diff --git a/ferramentas/opcoes_tamanho/template_mst.html b/ferramentas/opcoes_tamanho/template_mst.html index d315ca3..70446d8 100644 --- a/ferramentas/opcoes_tamanho/template_mst.html +++ b/ferramentas/opcoes_tamanho/template_mst.html @@ -1,18 +1,20 @@ -

{{{largura}}}:

-
- -
-
-

{{{altura}}}:

-
- -
+
+

{{{largura}}}:

+
+ +
+
+

{{{altura}}}:

+
+ +
-
-

{{{valor}}}

-

- -

-

- -

\ No newline at end of file +
+

{{{valor}}}

+

+ +

+

+ +

+
\ No newline at end of file diff --git a/ferramentas/tipoimagem/template_mst.html b/ferramentas/tipoimagem/template_mst.html index b9f4d33..79c1943 100644 --- a/ferramentas/tipoimagem/template_mst.html +++ b/ferramentas/tipoimagem/template_mst.html @@ -1,101 +1,103 @@ -

{{{selecionaFiltro}}}

-
- -
-

- -

-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - {{{nenhum}}} - -
- - {{{tonsCinza}}} - -
- - {{{sepiaClara}}} - -
- - {{{sepiaNormal}}} - -
- - {{{negativo}}} - -
- - {{{detectaBordas}}} - -
- - emboss - -
- - gaussian blur - -
- - selective blur - -
- - mean removal - -
\ No newline at end of file +
+

{{{selecionaFiltro}}}

+
+ +
+
+

+ +

+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + {{{nenhum}}} + +
+ + {{{tonsCinza}}} + +
+ + {{{sepiaClara}}} + +
+ + {{{sepiaNormal}}} + +
+ + {{{negativo}}} + +
+ + {{{detectaBordas}}} + +
+ + emboss + +
+ + gaussian blur + +
+ + selective blur + +
+ + mean removal + +
+
\ No newline at end of file -- libgit2 0.21.2