function initMap() { var centre = {lat: 44.7596, lng: 4.56244} ; 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.67903830, lng: 4.67553350, nom: 'Zoan',url: '/hotspot-wifi-gite-chambres-d-hotes-st-bauzile-zoan-2853.html',ville: 'St Bauzile', activite: 'Gîte / Chambres d\'hôtes'}, {lat: 44.85979400, lng: 4.80895400, nom: 'Domaine de Turzon',url: '/hotspot-wifi-restaurant-saint-georges-les-bains-domaine-de-turzon-2867.html',ville: 'Saint Georges les Bains', activite: 'Restaurant'}, {lat: 44.47451510, lng: 4.23938430, nom: 'Hotel de L\'Europe',url: '/hotspot-wifi-hotel-joyeuse-hotel-de-l-europe-4719.html',ville: 'Joyeuse', activite: 'Hôtel'}, {lat: 44.86792700, lng: 4.44193000, nom: 'Le Moulinage de Saint-Christol',url: '/hotspot-wifi-gite-chambres-d-hotes-saint-christol-le-moulinage-de-saint-christol-4751.html',ville: 'Saint-Christol', activite: 'Gîte / Chambres d\'hôtes'}, {lat: 44.54923090, lng: 4.68238850, nom: 'Bistro Regain',url: '/hotspot-wifi-bar-brasserie-le-teil-bistro-regain-5077.html',ville: 'Le Teil', activite: 'Bar brasserie'}, {lat: 45.05245910, lng: 4.38887020, nom: 'Camping du Lac',url: '/hotspot-wifi-camping-devesset-camping-du-lac-5825.html',ville: 'Devesset', activite: 'Camping'}, {lat: 44.48305470, lng: 4.23176360, nom: 'Camping la Nouzarède',url: '/hotspot-wifi-camping-joyeuse-camping-la-nouzarede-7930.html',ville: 'Joyeuse', activite: 'Camping'}, {lat: 44.47972800, lng: 4.16787100, nom: 'Camping Hello Soleil',url: '/hotspot-wifi-camping-lablachere-camping-hello-soleil-8065.html',ville: 'Lablachere', activite: 'Camping'}, {lat: 43.01134900, lng: 1.92499500, nom: 'Camping les Chataigniers',url: '/hotspot-wifi-camping-ribes-camping-les-chataigniers-8157.html',ville: 'Ribes', activite: 'Camping'}, {lat: 45.07642500, lng: 4.64074320, nom: 'Domaine de Pierrageais',url: '/hotspot-wifi-camping-saint-felicien-domaine-de-pierrageais-8335.html',ville: 'Saint-Félicien', activite: 'Camping'}, {lat: 44.66956570, lng: 4.20318790, nom: 'Camping de Belos',url: '/hotspot-wifi-camping-thueyts-camping-de-belos-10509.html',ville: 'Thueyts', activite: 'Camping'}, {lat: 45.06416780, lng: 4.83451160, nom: 'Ibiris',url: '/hotspot-wifi-collectif-tournon-sur-rhone-ibiris-10524.html',ville: 'Tournon Sur Rhone', activite: 'Collectif'}, {lat: 44.56362700, lng: 4.47465400, nom: 'Office de Tourisme de Berg Et Coiron',url: '/hotspot-wifi-office-de-tourisme-mirabel-office-de-tourisme-de-berg-et-coiron-12364.html',ville: 'Mirabel', activite: 'Office de tourisme'} ]