function initMap() { var centre = {lat: 45.1469, lng: 0.757221} ; 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.81115800, lng: 0.87461000, nom: 'Les Jardins de L\'Abbaye',url: '/hotspot-wifi-camping-cadouin-les-jardins-de-l-abbaye-804.html',ville: 'Cadouin', activite: 'Camping'}, {lat: 44.62963400, lng: 1.08038800, nom: 'Mairie de Villefranche',url: '/hotspot-wifi-mairie-villefranche-mairie-de-villefranche-2498.html',ville: 'Villefranche', activite: 'Mairie'}, {lat: 45.15172160, lng: 0.00996120, nom: 'Laverie Libre Service la Roche Chalais',url: '/hotspot-wifi-espace-public-la-roche-chalais-laverie-libre-service-la-roche-chalais-5450.html',ville: 'La Roche Chalais', activite: 'Espace public'}, {lat: 44.67196400, lng: 1.06990700, nom: 'Sci la Fontaine',url: '/hotspot-wifi-societe-prats-du-perigord-sci-la-fontaine-8066.html',ville: 'Prats du Perigord', activite: 'Société'}, {lat: 45.18815300, lng: 0.70793400, nom: 'Cfta Centre Ouest',url: '/hotspot-wifi-vehicule-de-transport-perigueux-cfta-centre-ouest-9198.html',ville: 'Périgueux', activite: 'Véhicule de transport'}, {lat: 44.67172800, lng: 0.40982400, nom: 'Village de Gites de Bretou',url: '/hotspot-wifi-gite-chambres-d-hotes-eymet-village-de-gites-de-bretou-9461.html',ville: 'Eymet', activite: 'Gîte / Chambres d\'hôtes'}, {lat: 44.76902700, lng: 0.76753000, nom: 'Les Arts\'Cades',url: '/hotspot-wifi-bar-tabac-beaumontois-en-perigord-les-arts-cades-9843.html',ville: 'Beaumontois En Périgord', activite: 'Bar tabac'}, {lat: 45.18481000, lng: 0.70860400, nom: '6877',url: '/hotspot-wifi-vehicule-de-transport-perigueux-6877-10333.html',ville: 'Périgueux', activite: 'Véhicule de transport'}, {lat: 45.08002600, lng: 0.11984500, nom: 'Le Ruisseau Chaud',url: '/hotspot-wifi-gite-chambres-d-hotes-eygurande-le-ruisseau-chaud-10339.html',ville: 'Eygurande', activite: 'Gîte / Chambres d\'hôtes'}, {lat: -99.00000000, lng: -99.00000000, nom: 'Restaurant Cocottes Et Popotes',url: '/hotspot-wifi-restaurant-boulazac-isle-manoire-restaurant-cocottes-et-popotes-11386.html',ville: 'Boulazac Isle Manoire', activite: 'Restaurant'}, {lat: 44.82528900, lng: 1.24769900, nom: 'Gîtes la Roseraie',url: '/hotspot-wifi-gite-chambres-d-hotes-vitrac-gites-la-roseraie-11500.html',ville: 'Vitrac', activite: 'Gîte / Chambres d\'hôtes'}, {lat: 45.08256800, lng: 0.73265500, nom: 'Mairie D\'Eglise Neuve de Vergt',url: '/hotspot-wifi-mairie-eglise-neuve-de-vergt-mairie-d-eglise-neuve-de-vergt-12513.html',ville: 'Eglise Neuve de Vergt', activite: 'Mairie'}, {lat: 45.68080700, lng: 0.64665900, nom: 'Perigord Farine - Minoterie Allafort',url: '/hotspot-wifi-societe-busserolles-perigord-farine-minoterie-allafort-12530.html',ville: 'Busserolles', activite: 'Société'}, {lat: 45.17856400, lng: 0.78206600, nom: 'Ampaline Périgueux',url: '/hotspot-wifi-hotel-boulazac-ampaline-perigueux-12578.html',ville: 'Boulazac', activite: 'Hôtel'} ]