function initMap() { var centre = {lat: 44.37, lng: 0.46} ; var map = new google.maps.Map(document.getElementById('map'), { zoom: 8, center: centre }); var tempMarkers = []; var infoWindow = new google.maps.InfoWindow(); var marker, i; for (var i = 0; i < locations.length; i++) { var lat = locations[i].lat; var lng = locations[i].lng; marker = new google.maps.Marker({ position: new google.maps.LatLng(lat, lng), map: map, icon: 'https://cdn2.iconfinder.com/data/icons/flat-ui-icons-24-px/24/location-24-32.png' }); tempMarkers.push(marker); //markerCluster.addMarker(marker); var prev_infowindow = false; google.maps.event.addListener(marker, 'click', (function(marker, i) { return function() { var contentString = ''+locations[i].nom+'
'+locations[i].activite+' à '+locations[i].ville; var infoWindow = new google.maps.InfoWindow({ content: contentString }); if (prev_infowindow) { prev_infowindow.close(); } prev_infowindow = infoWindow; infoWindow.open(map, marker); } })(marker, i)); } var markerCluster = new MarkerClusterer(map,tempMarkers,{imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m'}); } var locations = [ {lat: 44.55270600, lng: 0.88187500, nom: 'Eurl les Bastides Camping des Bastides',url: '/hotspot-wifi-camping-salles-eurl-les-bastides-camping-des-bastides-1066.html',ville: 'Salles', activite: 'Camping'}, {lat: 44.20890960, lng: 0.62455630, nom: 'Locaboat Agen',url: '/hotspot-wifi-centre-de-loisirs-agen-locaboat-agen-1395.html',ville: 'Agen', activite: 'Centre de loisirs'}, {lat: 44.49723190, lng: 0.66809200, nom: 'Résidence du Golf',url: '/hotspot-wifi-collectif-castelnaud-de-gratecambe-residence-du-golf-1710.html',ville: 'Castelnaud-De-Gratecambe', activite: 'Collectif'}, {lat: 44.17953300, lng: 0.62484100, nom: 'La Cantine du Pêcheur',url: '/hotspot-wifi-bar-restaurant-boe-la-cantine-du-pecheur-4999.html',ville: 'Boe', activite: 'Bar restaurant'}, {lat: 44.50892900, lng: 0.16661300, nom: 'Marmande-Residence St-Exupery',url: '/hotspot-wifi-ehpad-marmande-marmande-residence-st-exupery-5764.html',ville: 'Marmande', activite: 'EHPAD'}, {lat: 44.20243240, lng: 0.61236810, nom: 'Agen-Residence Tiers Temps',url: '/hotspot-wifi-ehpad-agen-agen-residence-tiers-temps-6589.html',ville: 'Agen', activite: 'EHPAD'}, {lat: 44.20690630, lng: 0.62212510, nom: 'Résidence les Remparts',url: '/hotspot-wifi-ehpad-agen-residence-les-remparts-6594.html',ville: 'Agen', activite: 'EHPAD'}, {lat: 44.38097500, lng: 0.53731100, nom: 'Camping du Bosc',url: '/hotspot-wifi-camping-le-temple-sur-lot-camping-du-bosc-7243.html',ville: 'Le Temple Sur Lot', activite: 'Camping'}, {lat: 44.40304360, lng: 0.70406940, nom: 'Pharmacie du Rond Point',url: '/hotspot-wifi-pharmacie-parapharmacie-villeneuve-sur-lot-pharmacie-du-rond-point-7697.html',ville: 'Villeneuve Sur Lot', activite: 'Pharmacie - Parapharmacie '}, {lat: 44.40513470, lng: 0.68354380, nom: 'Hotel Deltour Bias',url: '/hotspot-wifi-hotel-bias-hotel-deltour-bias-8114.html',ville: 'Bias', activite: 'Hôtel'}, {lat: 44.20267800, lng: 0.62534700, nom: 'Colocation Victor Hugo',url: '/hotspot-wifi-residence-etudiante-agen-colocation-victor-hugo-8961.html',ville: 'Agen', activite: 'Résidence étudiante'}, {lat: -99.00000000, lng: -99.00000000, nom: 'Campanile Agen',url: '/hotspot-wifi-hotel-agen-campanile-agen-11932.html',ville: 'Agen', activite: 'Hôtel'} ]