function initMap() { var centre = {lat: 43.65, 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: 43.88274300, lng: 0.38123000, nom: 'Locaboat Valence-Sur-Baïse',url: '/hotspot-wifi-centre-de-loisirs-valence-sur-baise-locaboat-valence-sur-baise-1581.html',ville: 'Valence-Sur-Baïse', activite: 'Centre de loisirs'}, {lat: 43.89791200, lng: 0.81119000, nom: 'Camping le Néri',url: '/hotspot-wifi-camping-mauroux-camping-le-neri-2677.html',ville: 'Mauroux', activite: 'Camping'}, {lat: 43.80490890, lng: 0.43056470, nom: 'Casino de Castera Verduzan',url: '/hotspot-wifi-restaurant-castera-verduzan-casino-de-castera-verduzan-4987.html',ville: 'Castera Verduzan', activite: 'Restaurant'}, {lat: 43.89111900, lng: 0.82882400, nom: 'Camping Deveze',url: '/hotspot-wifi-camping-gaudonville-camping-deveze-5624.html',ville: 'Gaudonville', activite: 'Camping'}, {lat: 43.52382020, lng: 0.16158820, nom: 'Hôtel des Comtes de Pardiac',url: '/hotspot-wifi-hotel-marciac-hotel-des-comtes-de-pardiac-6777.html',ville: 'Marciac', activite: 'Hôtel'}, {lat: 43.51493000, lng: 0.40696600, nom: 'Hôtel Europhôtel Maupas',url: '/hotspot-wifi-hotel-mirande-hotel-europhotel-maupas-7966.html',ville: 'Mirande', activite: 'Hôtel'}, {lat: 43.78281000, lng: 0.73643600, nom: 'Au Gré du Vent',url: '/hotspot-wifi-camping-taybosc-au-gre-du-vent-8061.html',ville: 'Taybosc', activite: 'Camping'}, {lat: 43.77467700, lng: 0.92825200, nom: 'Mairie de Sarrant',url: '/hotspot-wifi-mairie-sarrant-mairie-de-sarrant-9529.html',ville: 'Sarrant', activite: 'Mairie'}, {lat: 43.69859500, lng: 0.08461810, nom: 'Le Domaine du Castex (camping/hébergement)',url: '/hotspot-wifi-camping-aignan-le-domaine-du-castex-camping-hebergement-9948.html',ville: 'Aignan', activite: 'Camping'}, {lat: 43.64701900, lng: 0.58323300, nom: 'Hotel de France',url: '/hotspot-wifi-hotel-auch-hotel-de-france-10148.html',ville: 'Auch', activite: 'Hôtel'}, {lat: 43.62743900, lng: 0.87690500, nom: 'Villa des Sources',url: '/hotspot-wifi-restaurant-gimont-villa-des-sources-10979.html',ville: 'Gimont', activite: 'Restaurant'}, {lat: 43.64351600, lng: 0.61709400, nom: 'Domaine de Baulieu',url: '/hotspot-wifi-hotel-auch-domaine-de-baulieu-11414.html',ville: 'Auch', activite: 'Hôtel'} ]