Commit fe46aceb6dcf74854e52af7036a3c19ed7848e2b
1 parent
a9d2d56a
Exists in
master
and in
7 other branches
Atualização dos marcadores TODO
Showing
4 changed files
with
19 additions
and
4 deletions
Show diff stats
classesjs/classe_desenho.js
... | ... | @@ -161,6 +161,23 @@ i3GEO.desenho = |
161 | 161 | i3GEO.desenho.openlayers.criaLayerGrafico(); |
162 | 162 | } |
163 | 163 | }, |
164 | + addPin: function(x,y){ | |
165 | + i3GEO.desenho.openlayers.inicia; | |
166 | + var point = new OpenLayers.Geometry.Point(x,y), | |
167 | + f = new OpenLayers.Feature.Vector( | |
168 | + point, { | |
169 | + origem : "pin" | |
170 | + },{ | |
171 | + graphicWidth: 27, | |
172 | + graphicHeight: 27, | |
173 | + graphicXOffset: 13, | |
174 | + graphicYOffset: -13, | |
175 | + externalGraphic: i3GEO.configura.locaplic+"imagens/google/confluence.png" | |
176 | + }); | |
177 | + i3GEO.desenho.layergrafico.addFeatures([ | |
178 | + f | |
179 | + ]); | |
180 | + }, | |
164 | 181 | criaLayerGrafico : function() { |
165 | 182 | if (!i3GEO.desenho.layergrafico) { |
166 | 183 | var sketchSymbolizers = { |
... | ... | @@ -269,7 +286,7 @@ i3GEO.desenho = |
269 | 286 | /** |
270 | 287 | * Function: destroyFeatures |
271 | 288 | * |
272 | - * Destr�i as figuras | |
289 | + * Destroi as figuras | |
273 | 290 | * |
274 | 291 | * {array} - lista de objetos |
275 | 292 | */ | ... | ... |
classesjs/classe_plugini3geo.js
classesphp/mapa_googlemaps_alternativo.php
... | ... | @@ -139,7 +139,6 @@ if(!isset($_GET["telaR"])){ |
139 | 139 | if($layerName == $_GET["layer"] || $l->group == $_GET["layer"] && $l->group != ""){ |
140 | 140 | $l->set("template","none.htm"); |
141 | 141 | $l->set("status",MS_DEFAULT); |
142 | - //@TODO verificar se foi corrigido em versoes novas do mapserver | |
143 | 142 | //corrige um bug do mapserver que nao calcula a escala direito |
144 | 143 | $l->set("maxscaledenom",$l->maxscaledenom * 100000); |
145 | 144 | $l->set("minscaledenom",$l->minscaledenom * 100000); | ... | ... |
ms_configura.php
... | ... | @@ -255,7 +255,7 @@ $emailInstituicao = "geoprocessamento@mma.gov.br"; |
255 | 255 | Tipo: |
256 | 256 | {string} |
257 | 257 | */ |
258 | -//TODO v5 remover | |
258 | +//TODO chave do google v5 remover | |
259 | 259 | //Verificar se o google earth nao precisa disso |
260 | 260 | $googleApiKey = "ABQIAAAAKguAlmd-hSDulF2T_tfWMxT3OAK09d_ZSDyC36iPGlww-4j-9xSrR2ZZUxVeZC01q8anfe5ntl_U4w"; |
261 | 261 | /* | ... | ... |