Elucubrato da saibal
Addì 17 aprile 2015
Google Maps Responsive con lista di marker da indirizzi
Il codice che segue permette di creare una mappa visualizzando una lista di marker partendo da indirizzi. Il problema più grande, in caso di mancanza di latitudine e longitudine, è il fatto che le API di Google Maps impongono un timeout alle chiamate. Per ovviare ho scritto una funzione che reitera la lista degli indirizzi fino a quando tutte le richieste non sono state soddisfatte.
In più il codice seguente è valido anche per mappe “responsive” dato che, al resize, viene riposizionato il centro della mappa sulle coordinate relative. Il codice è abbastanza chiaro e contiene commenti abbastanza esaustivi. Ho fatto anche una versione con le stesse funzionalità ma basata sul plugin GMap3. La pubblicherò in seguito.
La demo è su questa pagina mentre il download è disponibile a questo link.
Ecco il codice completo:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
<!DOCTYPE html> <html> <head> <title>googlemaps geocode address con timeout - js puro</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <meta http-equiv="content-language" content="it" /> <meta name="robots" content="noindex,nofollow,all" /> <style type="text/css"> #container { border:solid 1px #000; width:100%; height: 250px; } #map_canvas1 { margin: 0; padding: 0; width:100%; height: 100%; } /* test media query per responsive */ @media all and (min-width: 768px) { #container { margin: 0 auto; border:solid 1px #000; width:80%; height: 500px; } } </style> <!-- caricamento asincrono della libreria --> <script type="text/javascript"> function async_load(){ var gskey = "VOSTRA_APIKEY"; var js = document.createElement("script"); js.type = "text/javascript"; js.async = true; js.src = "http://maps.googleapis.com/maps/api/js?key=" + gskey + "&sensor=false&callback=initMap"; document.body.appendChild(js); } // compatibilità con IE < 8 window.attachEvent ? window.attachEvent("onload", async_load) : window.addEventListener("load", async_load, false); </script> <!-- caricamento asincrono della libreria --> <!-- soluzione javascript puro --> <script type="text/javascript"> // div della mappa var map_div = "map_canvas1"; // coordinate di default in mancanza di indirizzi. default: roma var default_latlng = [41.834986, 12.397830]; // coordinate centro della mappa indipendentemente dagli indirizzi (non valido se autofit è su true) var map_center = [41.834986, 12.397830]; // autofit sulla mappa var map_autofit = true; // ritardo tra una chiamata e l'altra. se indirizzi < 6 valore consigliato: 100. se indirizzi > 6 valore consigliato: 250 var query_timeout = 250; // zoom in base a risultati. se risultati < 4 valore consigliato: 12. se indirizzi > 4 valore consigliato: tra 11 e 8 var map_zoom = 10; // array di indirizzi composto da "titolo marker" / "indirizzo istituto" var markers = [ {data:"Edificio 1", address:"Via del Corso 100, Roma"}, {data:"Edificio 2", address:"Via Flaminia 300, Roma, Italia"}, {data:"Edificio 3", address:"Via Flaminia 100, Roma, Italia"}, {data:"Edificio 4", address:"Via Trionfale 100, Roma, Italia"}, {data:"Edificio 5", address:"Via Cola di rienzo 100, Roma, Italia"}, {data:"Edificio 6", address:"Via Appia 100, Roma, Italia"}, {data:"Edificio 7", address:"Via Salaria 100, Roma, Italia"}, {data:"Edificio 8", address:"Via Mondello 100, Roma, Italia"}, {data:"Edificio 9", address:"Via Virginio Orsini 27, 00132, Roma"}, {data:"Edificio 11", address:"Via Laurentina 760, Roma"}, {data:"Edificio 12", address:"Via Cristoforo Colombo 98, Roma, Italia"}, {data:"Edificio 13", address:"Via del Corso 100, Roma, Italia"}, {data:"Edificio 14", address:"Corso di Francia 100, Roma, Italia"}, {data:"Edificio 15", address:"Via Nomentana 100, Roma, Italia"}, {data:"Edificio 16", address:"Via Tiburtina 100, Roma, Italia"} ]; // debug var isdebug = true; /** * initMap * * inizializza la mappa e chiama la creazione dei marker */ function initMap() { // valore di default map_div = typeof(map_div) !== "undefined" ? map_div : "map_canvas"; map_center = typeof(map_center) !== "undefined" ? map_center : false; map_autofit = typeof(map_autofit) !== "undefined" ? map_autofit : false; map_zoom = typeof(map_zoom) !== "undefined" ? map_zoom : 10; marker_action = typeof(marker_action) !== "undefined" ? marker_action : "click"; default_latlng = typeof(default_latlng) !== "undefined" ? default_latlng : [41.834986, 12.397830]; default_zoom = typeof(default_zoom) !== "undefined" ? default_zoom : 6; query_timeout = typeof(query_timeout) !== "undefined" ? query_timeout : 200; isdebug = typeof(isdebug) !== "undefined" ? isdebug : false; start_index = 0; result_geocode = 0; currentInfoWindow = null; geocoder = null; map = null; latlngbounds = null; static_center = null; first_zoom = null; geocoder = new google.maps.Geocoder(); var myOptions = { zoom: default_zoom, center: new google.maps.LatLng(default_latlng[0], default_latlng[1]), mapTypeControl: true, mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}, navigationControl: true, mapTypeId: google.maps.MapTypeId.ROADMAP }; map = new google.maps.Map(document.getElementById(map_div), myOptions); if (geocoder != null && markers.length > 0) { // chiamo la funzione che cicla gli indirizzi addMarker(start_index); } // ricentro la mappa al resize google.maps.event.addDomListener(window, "resize", function() { var center = map.getCenter(); google.maps.event.trigger(map, "resize"); map.setCenter(center); // chiudo eventuali infowindow if (currentInfoWindow != null) currentInfoWindow.close(); toLog("resize della mappa"); }); }; /** * addMarker * * crea e aggiungi i marker alla mappa */ function addMarker(index) { if (first_zoom == null) { // setto lo zoom da parametro map.setZoom(map_zoom); first_zoom = true; toLog('parametro zoom: ' +map_zoom); } // imposto il centro della mappa se passato come parametro if (map_center && static_center == null) { static_center = new google.maps.LatLng(map_center[0], map_center[1]); map.setCenter(static_center); toLog('static center map impostato'); } geocoder.geocode( {"address": markers[index]["address"]}, function(results, status) { if (status == google.maps.GeocoderStatus.OK) { // conto i risultati utili result_geocode++; // aggiungo le coordinate dell'indirizzo se autofit è true if (map_autofit) { if (latlngbounds == null) { latlngbounds = new google.maps.LatLngBounds(); } latlngbounds.extend(results[0].geometry.location); } // setto il centro della mappa sul primo risultato utile if (map_center == false && results[0].geometry.location != false) { map_center = map.setCenter(results[0].geometry.location); toLog('centro impostato su: ' +markers[index]["address"]); } var infowindow = new google.maps.InfoWindow({ content: "<strong>" +markers[index]["data"]+ "</strong><br>" +markers[index]["address"]+results[0].geometry.location, //size: new google.maps.Size(150,50) }); var marker = new google.maps.Marker({ position: results[0].geometry.location, map: map, title: markers[index]["data"] }); google.maps.event.addListener(marker, marker_action, function() { if (currentInfoWindow != null) currentInfoWindow.close(); infowindow.open(map, marker); currentInfoWindow = infowindow; }); toLog("indirizzo trovato: " +markers[index]["address"]); } else { // se supero il limite di query aggiungo un timeout più lungo e reitero la chiamata if (status == google.maps.GeocoderStatus.OVER_QUERY_LIMIT) { setTimeout(function() { addMarker(index) }, (query_timeout * 3)); toLog("timeout per " +markers[index]["address"]+ ". reitero la chiamata."); } } // aumento il contatore e scorro l'array fino a quando ho elementi start_index++; if (start_index < markers.length) { setTimeout(function() { addMarker(start_index) }, (query_timeout)); } else { // in caso di errore o se non ho trovato nessun risultato utile rimposto lo zoom di default if (result_geocode == 0) { map.setZoom(default_zoom); toLog("nessun risultato valido. mappa impostata su posizione di default"); } if (latlngbounds != null) { map.fitBounds(latlngbounds); toLog('autofit istanziato'); } toLog("risultati trovati: " +result_geocode); } }); }; /** * toLog * * abilita o disabilita i console log */ function toLog(msg) { if (isdebug === true) { (window.console && window.console.log) ? window.console.log(msg) : alert(msg) } }; </script> <!-- soluzione javascript puro --> </head> <body> <h2>soluzione javascript puro</h2> <div id="container"> <div id="map_canvas1"></div> </div> </body> </html>
Lascia un Commento