ciao, da qualche giorno su alcuni siti non visualizzo più il marker di gmap, qualcuno sa se c'è un bug o altro?
ciao, da qualche giorno su alcuni siti non visualizzo più il marker di gmap, qualcuno sa se c'è un bug o altro?
Si fanno sempre nuove scoperte
http://code.google.com/apis/ajax/documentation/
l'unica cosa che mi viene in mente .The module name of an API is also its namespace. So symbols from the "maps" module are available under the namespace google.maps when the module loads. Existing Google AJAX APIs like the Maps API use a G prefix for all exported classes and constants. With this new naming convention, class names no longer have the G prefix, e.g., GMap2 becomes google.maps.Map2. APIs that currently use the G prefix will continue to support both the new and old naming conventions. Future APIs will only be available with the google.moduleName namespace.
![]()
Without faith, nothing is possible. With it, nothing is impossible
http://ilwebdifabio.it
ciao, stavo riguardando sta cosa e non riesco a capirci molto.
io ho sempre usato questo codice, funziona tutto, ma appunto non si vede il point. per ora ho risolto implementando l'iframe, ma rimane cmq il dubbio
graziecodice://<![CDATA[ function MapLoad(){ var map = new GMap(document.getElementById("mappa")); map.addControl(new GLargeMapControl()); map.addControl(new GMapTypeControl()); map.centerAndZoom(new GPoint(11.249313, 44.402944), 5); map.setMapType(G_MAP_TYPE); var point_mobili = new GPoint(11.249313, 44.402944); var marker_mobili = new GMarker(point_mobili); map.addOverlay(marker_mobili); GEvent.addListener(marker_mobili, "click", function(){ marker_mobili.openInfoWindowHtml("*********"); }); } //]]>
Si fanno sempre nuove scoperte