function initMap() { var centre = {lat: 47.19, lng: 6.35} ; 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: 47.13071300, lng: 6.52579500, nom: 'Sarl Jif',url: '/hotspot-wifi-hotel-orchamps-vennes-sarl-jif-1239.html',ville: 'Orchamps-Vennes', activite: 'Hôtel'}, {lat: 47.05528100, lng: 6.60474770, nom: 'Liberté Fitness',url: '/hotspot-wifi-centre-de-loisirs-morteau-liberte-fitness-1411.html',ville: 'Morteau', activite: 'Centre de loisirs'}, {lat: 46.90477360, lng: 6.34980270, nom: 'Chrs Pasteur',url: '/hotspot-wifi-collectif-pontarlier-chrs-pasteur-1459.html',ville: 'Pontarlier', activite: 'Collectif'}, {lat: 47.21847700, lng: 6.63696200, nom: 'Hotel Restaurant de Gigot',url: '/hotspot-wifi-hotel-bretonvillers-hotel-restaurant-de-gigot-4708.html',ville: 'Bretonvillers', activite: 'Hôtel'}, {lat: 47.24717170, lng: 6.02360230, nom: 'Hôtel Victor Hugo',url: '/hotspot-wifi-hotel-besancon-hotel-victor-hugo-6891.html',ville: 'Besancon', activite: 'Hôtel'}, {lat: 47.23681070, lng: 6.02588750, nom: 'Hôtel Regina',url: '/hotspot-wifi-hotel-besancon-hotel-regina-7570.html',ville: 'Besancon', activite: 'Hôtel'}, {lat: 47.24547500, lng: 5.81749800, nom: 'Telecom Plus',url: '/hotspot-wifi-societe-lavernay-telecom-plus-13045.html',ville: 'Lavernay', activite: 'Société'}, {lat: 46.79976600, lng: 6.30519400, nom: 'Hotel le Lac',url: '/hotspot-wifi-agence-bancaire-malbuisson-hotel-le-lac-13226.html',ville: 'Malbuisson', activite: 'Agence bancaire'}, {lat: 46.79978300, lng: 6.30459200, nom: 'Hotel les Rives Sauvages',url: '/hotspot-wifi-hotel-malbuisson-hotel-les-rives-sauvages-13227.html',ville: 'Malbuisson', activite: 'Hôtel'}, {lat: 47.18189100, lng: 5.81309700, nom: 'Chez Moustache',url: '/hotspot-wifi-bar-brasserie-saint-vit-chez-moustache-13268.html',ville: 'Saint Vit', activite: 'Bar brasserie'}, {lat: 47.27777720, lng: 5.99469610, nom: 'Ibis Budget - Ecole Valentin',url: '/hotspot-wifi-hotel-besancon-ibis-budget-ecole-valentin-13621.html',ville: 'Besançon', activite: 'Hôtel'} ]