Commit 6c366e9cbcef01331682e2a95e4e4b9aba984c88
1 parent
34fdf5fa
Exists in
master
and in
7 other branches
-
Showing
2 changed files
with
4 additions
and
1 deletions
Show diff stats
classesjs/classe_eventos.js
| ... | ... | @@ -527,7 +527,8 @@ i3GEO.eventos = |
| 527 | 527 | i3GEO.eventos.mousecliqueMapa(exy); |
| 528 | 528 | }; |
| 529 | 529 | docMapa.onmouseup = function(exy) { |
| 530 | - alert("oi") | |
| 530 | + alert(i3GEO.eventos.cliquePerm.status); | |
| 531 | + alert(exy) | |
| 531 | 532 | i3GEO.eventos.mouseupMapa(exy); |
| 532 | 533 | }; |
| 533 | 534 | docMapa.ontouchmove = function(exy) { | ... | ... |
classesjs/classe_interface.js
| ... | ... | @@ -2926,6 +2926,7 @@ i3GEO.Interface = { |
| 2926 | 2926 | } |
| 2927 | 2927 | ); |
| 2928 | 2928 | //se touch |
| 2929 | + /* | |
| 2929 | 2930 | $i(i3GEO.Interface.IDMAPA).ontouchend = function(e) { |
| 2930 | 2931 | e.preventDefault(); |
| 2931 | 2932 | var pos, p, lonlat; |
| ... | ... | @@ -2951,6 +2952,7 @@ i3GEO.Interface = { |
| 2951 | 2952 | } |
| 2952 | 2953 | i3GEO.eventos.cliquePerm.status = true; |
| 2953 | 2954 | }; |
| 2955 | + */ | |
| 2954 | 2956 | }, |
| 2955 | 2957 | retornaIndiceLayer : function(nomeLayer) { |
| 2956 | 2958 | var i = false; | ... | ... |