Commit d8b5a0907157b3ef8bd4a629915f12d14ea5880c
1 parent
25003e1d
Exists in
master
and in
7 other branches
--no commit message
Showing
5 changed files
with
11 additions
and
8 deletions
Show diff stats
classesjs/classe_configura.js
| @@ -687,7 +687,7 @@ i3GEO.configura = { | @@ -687,7 +687,7 @@ i3GEO.configura = { | ||
| 687 | marcadorZoom = ""; | 687 | marcadorZoom = ""; |
| 688 | if(i3GEO.Interface.ATUAL==="openlayers"){ | 688 | if(i3GEO.Interface.ATUAL==="openlayers"){ |
| 689 | if(i3GEO.Interface.TABLET === false) | 689 | if(i3GEO.Interface.TABLET === false) |
| 690 | - {OLpanel.activateControl(OLpan);} | 690 | + {OLpanel.activateControl(i3GEO.Interface.openlayers.OLpan);} |
| 691 | return; | 691 | return; |
| 692 | } | 692 | } |
| 693 | panMapaInicia = function(exy){ | 693 | panMapaInicia = function(exy){ |
classesjs/classe_guias.js
| @@ -243,9 +243,9 @@ i3GEO.guias = { | @@ -243,9 +243,9 @@ i3GEO.guias = { | ||
| 243 | // | 243 | // |
| 244 | //obtém outras guias que podem existir no mapa | 244 | //obtém outras guias que podem existir no mapa |
| 245 | // | 245 | // |
| 246 | - var nguiasreal = 0,onf,outf,guiaconteudo,id,guia,guias,nguias,g,re,ng,tituloguia,i,ins,largura,altura; | ||
| 247 | - CONFIGURA = i3GEO.guias.CONFIGURA, | ||
| 248 | - guias = i3GEO.util.listaChaves(CONFIGURA); | 246 | + var nguiasreal = 0,onf,outf,guiaconteudo,id,guia,guias,nguias,g,re,ng,tituloguia,i,ins,largura,altura, |
| 247 | + CONFIGURA = i3GEO.guias.CONFIGURA, | ||
| 248 | + guias = i3GEO.util.listaChaves(CONFIGURA); | ||
| 249 | 249 | ||
| 250 | try{ | 250 | try{ |
| 251 | nguias = guias.length; | 251 | nguias = guias.length; |
classesjs/classe_interface.js
| @@ -829,10 +829,10 @@ i3GEO.Interface = { | @@ -829,10 +829,10 @@ i3GEO.Interface = { | ||
| 829 | //estes controles ficam invisíveis e são usados quando os ícones default do i3geo são ativados | 829 | //estes controles ficam invisíveis e são usados quando os ícones default do i3geo são ativados |
| 830 | // | 830 | // |
| 831 | if(i3GEO.Interface.TABLET === false){ | 831 | if(i3GEO.Interface.TABLET === false){ |
| 832 | - OLpan = new OpenLayers.Control.Navigation(); | 832 | + i3GEO.Interface.openlayers.OLpan = new OpenLayers.Control.Navigation(); |
| 833 | OLzoom = new OpenLayers.Control.ZoomBox(); | 833 | OLzoom = new OpenLayers.Control.ZoomBox(); |
| 834 | OLpanel = new OpenLayers.Control.Panel(); | 834 | OLpanel = new OpenLayers.Control.Panel(); |
| 835 | - OLpanel.addControls([OLpan,OLzoom]); | 835 | + OLpanel.addControls([i3GEO.Interface.openlayers.OLpan,OLzoom]); |
| 836 | i3geoOL.addControl(OLpanel); | 836 | i3geoOL.addControl(OLpanel); |
| 837 | } | 837 | } |
| 838 | openlayers.ativaBotoes(); | 838 | openlayers.ativaBotoes(); |
| @@ -1106,6 +1106,8 @@ i3GEO.Interface = { | @@ -1106,6 +1106,8 @@ i3GEO.Interface = { | ||
| 1106 | p = e.xy; | 1106 | p = e.xy; |
| 1107 | //altera o indicador de localizacao | 1107 | //altera o indicador de localizacao |
| 1108 | lonlat = i3geoOL.getLonLatFromPixel(p); | 1108 | lonlat = i3geoOL.getLonLatFromPixel(p); |
| 1109 | + if(!lonlat) | ||
| 1110 | + {return;} | ||
| 1109 | d = i3GEO.calculo.dd2dms(lonlat.lon,lonlat.lat); | 1111 | d = i3GEO.calculo.dd2dms(lonlat.lon,lonlat.lat); |
| 1110 | try{ | 1112 | try{ |
| 1111 | objposicaocursor.ddx = lonlat.lon; | 1113 | objposicaocursor.ddx = lonlat.lon; |
ferramentas/selecao/index.js.php
| @@ -398,7 +398,7 @@ i3GEOF.selecao = { | @@ -398,7 +398,7 @@ i3GEOF.selecao = { | ||
| 398 | {alert("Escolha um tema");return;} | 398 | {alert("Escolha um tema");return;} |
| 399 | if(g_tipoacao !== 'selecaobox') | 399 | if(g_tipoacao !== 'selecaobox') |
| 400 | {return;} | 400 | {return;} |
| 401 | - i3geoOL.removeControl(OLpanel); | 401 | + i3geoOL.removeControl(i3GEO.Interface.openlayers.OLpan); |
| 402 | i3GEOF.selecao.box.criaBox(); | 402 | i3GEOF.selecao.box.criaBox(); |
| 403 | adicionaxyBox = i3GEO.util.pegaPosicaoObjeto($i(i3GEO.Interface.IDCORPO)); | 403 | adicionaxyBox = i3GEO.util.pegaPosicaoObjeto($i(i3GEO.Interface.IDCORPO)); |
| 404 | var i = $i("i3geoboxSel").style; | 404 | var i = $i("i3geoboxSel").style; |
interface/openlayers.htm
| @@ -145,7 +145,7 @@ | @@ -145,7 +145,7 @@ | ||
| 145 | </td> | 145 | </td> |
| 146 | </tr> | 146 | </tr> |
| 147 | </table> | 147 | </table> |
| 148 | -<script src="../classesjs/i3geo.js"></script> | 148 | +<script src="../classesjs/i3geonaocompacto.js"></script> |
| 149 | <script src="../pacotes/openlayers/OpenLayers29.js.php"></script> | 149 | <script src="../pacotes/openlayers/OpenLayers29.js.php"></script> |
| 150 | <script> | 150 | <script> |
| 151 | /* | 151 | /* |
| @@ -252,6 +252,7 @@ OpenLayers.ImgPath = "../pacotes/openlayers/img/"; | @@ -252,6 +252,7 @@ OpenLayers.ImgPath = "../pacotes/openlayers/img/"; | ||
| 252 | {layers:""}, | 252 | {layers:""}, |
| 253 | {isBaseLayer:true,visibility:false} | 253 | {isBaseLayer:true,visibility:false} |
| 254 | ); | 254 | ); |
| 255 | + | ||
| 255 | i3GEO.Interface.openlayers.LAYERSADICIONAIS = [ims,wsm,bra,osm]; | 256 | i3GEO.Interface.openlayers.LAYERSADICIONAIS = [ims,wsm,bra,osm]; |
| 256 | })(); | 257 | })(); |
| 257 | // | 258 | // |