Commit 787c51249c7fcb4e7e0af9cd053bd34ef1c7d91f
1 parent
ca3c1edc
Exists in
master
and in
7 other branches
--no commit message
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
ferramentas/googlemaps/index.php
@@ -50,8 +50,8 @@ Cria o mapa do Google Maps e adiciona os botões especiais do i3Geo. Define os ev | @@ -50,8 +50,8 @@ Cria o mapa do Google Maps e adiciona os botões especiais do i3Geo. Define os ev | ||
50 | principal do i3Geo quando é feita a navegação. | 50 | principal do i3Geo quando é feita a navegação. |
51 | */ | 51 | */ |
52 | function inicializa(){ | 52 | function inicializa(){ |
53 | - window.parent.i3GEO.util.criaPin(); | ||
54 | - var box = window.parent.$i("boxpin"); | 53 | + window.parent.i3GEO.util.criaPin("boxpingoogle",window.parent.i3GEO.configura.locaplic+'/imagens/dot1red.gif',"5px","5px"); |
54 | + var box = window.parent.$i("boxpingoogle"); | ||
55 | counterClick = 0 | 55 | counterClick = 0 |
56 | var m = document.getElementById("mapa") | 56 | var m = document.getElementById("mapa") |
57 | if(window.parent.i3GEO){ | 57 | if(window.parent.i3GEO){ |
@@ -124,8 +124,8 @@ function inicializa(){ | @@ -124,8 +124,8 @@ function inicializa(){ | ||
124 | {return;} | 124 | {return;} |
125 | xy = window.parent.i3GEO.calculo.dd2tela(ponto.x,ponto.y,window.parent.document.getElementById(window.parent.i3GEO.Interface.IDMAPA),window.parent.i3GEO.parametros.mapexten,window.parent.i3GEO.parametros.pixelsize); | 125 | xy = window.parent.i3GEO.calculo.dd2tela(ponto.x,ponto.y,window.parent.document.getElementById(window.parent.i3GEO.Interface.IDMAPA),window.parent.i3GEO.parametros.mapexten,window.parent.i3GEO.parametros.pixelsize); |
126 | box.style.display = "block"; | 126 | box.style.display = "block"; |
127 | - box.style.width = "21px"; | ||
128 | - box.style.height = "25px"; | 127 | + box.style.width = "5px"; |
128 | + box.style.height = "5px"; | ||
129 | box.style.top = parseInt(xy[1],10)+"px"; | 129 | box.style.top = parseInt(xy[1],10)+"px"; |
130 | box.style.left = parseInt(xy[0],10)+"px"; | 130 | box.style.left = parseInt(xy[0],10)+"px"; |
131 | }); | 131 | }); |