Commit c178546eeb3e775bdfb87ed3237e013f6d38ccf9
1 parent
db26f7e3
Exists in
master
and in
7 other branches
--no commit message
Showing
7 changed files
with
2 additions
and
29 deletions
Show diff stats
classesjs/classe_eventos.js
... | ... | @@ -339,7 +339,7 @@ i3GEO.eventos = { |
339 | 339 | {pos = i3GEO.util.pegaPosicaoObjeto(targ.parentNode);} |
340 | 340 | else |
341 | 341 | {pos = i3GEO.util.pegaPosicaoObjeto(targ);} |
342 | - if((i3GEO.configura.entorno.toLowerCase() === "sim") && (g_panM === "sim")){ | |
342 | + if(g_panM === "sim"){ | |
343 | 343 | pos[0] = pos[0] - i3GEO.parametros.w; |
344 | 344 | pos[1] = pos[1] - i3GEO.parametros.h; |
345 | 345 | } | ... | ... |
classesjs/classe_interface.js
... | ... | @@ -395,10 +395,6 @@ i3GEO.Interface = { |
395 | 395 | // |
396 | 396 | if($i("mst")) |
397 | 397 | {$i("mst").style.display="block";} |
398 | - if (i3GEO.configura.entorno.toLowerCase() === "sim"){ | |
399 | - i3GEO.configura.entorno = "nao"; | |
400 | - i3GEO.navega.entorno.ativaDesativa(); | |
401 | - } | |
402 | 398 | i3GEO.navega.autoRedesenho.ativa(); |
403 | 399 | i3GEO.util.defineValor("i3geo_escalanum","value",i3GEO.parametros.mapscale); |
404 | 400 | if ((i3GEO.parametros.geoip === "nao") && ($i("ondeestou"))) | ... | ... |
classesjs/classe_navega.js
... | ... | @@ -823,26 +823,6 @@ i3GEO.navega = { |
823 | 823 | } |
824 | 824 | }, |
825 | 825 | /* |
826 | - Classe: i3GEO.navega.entorno | |
827 | - | |
828 | - Controla o desenho do entorno do mapa (modo tile) | |
829 | - */ | |
830 | - entorno:{ | |
831 | - /* | |
832 | - Function: ativaDesativa | |
833 | - | |
834 | - Ajusta o mapa para ativar ou desativar o desenho do entorno | |
835 | - | |
836 | - Ao ser chamada, essa função muda o modo atual, ativando ou desativando o entorno | |
837 | - */ | |
838 | - ativaDesativa: function(){ | |
839 | - if(i3GEO.Interface.ATUAL === "googlemaps") | |
840 | - {alert("Essa operação não funciona nessa interface");return;} | |
841 | - if(i3GEO.Interface.ATUAL === "openlayers") | |
842 | - {i3GEO.Interface.openlayers.inverteModoTile();return;} | |
843 | - } | |
844 | - }, | |
845 | - /* | |
846 | 826 | Classe: i3GEO.navega.lente |
847 | 827 | |
848 | 828 | Ativa e controla a lente de aumento. | ... | ... |
classesjs/depreciados.js
... | ... | @@ -190,10 +190,6 @@ function i3GEOmantemCompatibilidade(){ |
190 | 190 | } |
191 | 191 | catch(e){alert("funcao depreciada");} |
192 | 192 | try{ |
193 | - i3GEO.configura.entorno = g_entorno; | |
194 | - } | |
195 | - catch(e){alert("funcao depreciada");} | |
196 | - try{ | |
197 | 193 | i3GEO.navega.lente.POSICAOX = g_posicaoLenteX = 0; |
198 | 194 | } |
199 | 195 | catch(e){alert("funcao depreciada");} | ... | ... |
documentacao/diagramas/arquitetura.dia
No preview for this file type
documentacao/diagramas/arquitetura.png
guia_de_migracao.txt
... | ... | @@ -6,6 +6,7 @@ Para a versão 4.7 |
6 | 6 | - A interface Flamingo foi removida definitivamente |
7 | 7 | - A interface "padrao" (geral) foi removida definitivamente |
8 | 8 | - O gadget "quadro" foi removido |
9 | +- A opção de ativação/desativação do entorno foi removida | |
9 | 10 | |
10 | 11 | |
11 | 12 | ------------------------------------------------------------------------------------------------- | ... | ... |