Commit 12a0be133eb93e6064c8e14a50005c7f8dc694bd
1 parent
c4b38cbe
Exists in
master
and in
7 other branches
--no commit message
Showing
2 changed files
with
6 additions
and
0 deletions
Show diff stats
ferramentas/metaestat/index.js
... | ... | @@ -131,6 +131,8 @@ i3GEOF.metaestat = { |
131 | 131 | ' <button title="'+$trad("t49")+'" onclick="i3GEOF.metaestat.analise.ativaTme()"><img src="'+i3GEO.configura.locaplic+'/imagens/gisicons/3d-light.png" /></button>' + |
132 | 132 | ' <button title="Estatísticas gerais" onclick="i3GEOF.metaestat.analise.estatistica()"><img src="'+i3GEO.configura.locaplic+'/imagens/gisicons/stats.png" /></button>' + |
133 | 133 | ' <button title="Ativa/Desativa contorno" onclick="i3GEOF.metaestat.analise.contorno()"><img src="'+i3GEO.configura.locaplic+'/imagens/gisicons/boundary-remove-add.png" /></button>' + |
134 | + ' <button title="Altera representação" onclick="i3GEOF.metaestat.analise.alteraRepresentacao()"><img src="'+i3GEO.configura.locaplic+'/imagens/gisicons/shape.png" /></button>' + | |
135 | + | |
134 | 136 | '</div>' + |
135 | 137 | '<div id="i3geoCartoAnaliseCamadas" style="margin-left:5px;line-height:25px"></div>' + |
136 | 138 | '<input type=hidden value="" id="listaColourRampAnaliseMetaestat" onchange="i3GEOF.metaestat.analise.aplicaColourRamp()" />'; //utilizado pelo seletor de colourramp |
... | ... | @@ -160,6 +162,9 @@ i3GEOF.metaestat = { |
160 | 162 | }; |
161 | 163 | i3GEO.php.listaCamadasMetaestat(temp); |
162 | 164 | }, |
165 | + alteraRepresentacao: function(){ | |
166 | + | |
167 | + }, | |
163 | 168 | mostraRegiao: function(){ |
164 | 169 | if(typeof(i3GEOF.mostraregiao) === 'undefined'){ |
165 | 170 | i3GEO.util.scriptTag( | ... | ... |
ferramentas/metaestat/mostraregiao.js
... | ... | @@ -111,6 +111,7 @@ i3GEOF.mostraregiao = { |
111 | 111 | i3GEOF.mostraregiao.inicia(divid); |
112 | 112 | i3GEO.janela.tempoMsg("Utilize a guia lateral para ligar/desligar camadas que já estejam no mapa"); |
113 | 113 | }, |
114 | + //TODO incluir toponimia | |
114 | 115 | html: function(){ |
115 | 116 | var ins = "" + |
116 | 117 | '<input id=i3geomostraregiaoAplica type="button" value="'+$trad("p14")+'" /> ' + | ... | ... |