function initMap() { var centre = {lat: 42.08, lng: 9.1} ; var map = new google.maps.Map(document.getElementById('map'), { zoom: 7, 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: 42.95615670, lng: 9.45224360, nom: 'Le Vinci',url: '/hotspot-wifi-bar-brasserie-macinaggio-le-vinci-1258.html',ville: 'Macinaggio', activite: 'Bar brasserie'}, {lat: 42.81601200, lng: 9.45137100, nom: 'U Castiglionu',url: '/hotspot-wifi-gite-chambres-d-hotes-sisco-u-castiglionu-2758.html',ville: 'Sisco', activite: 'Gîte / Chambres d\'hôtes'}, {lat: 42.68184600, lng: 9.30370400, nom: 'Hameau Sant\'Andria',url: '/hotspot-wifi-gite-chambres-d-hotes-saint-florent-hameau-sant-andria-2879.html',ville: 'Saint Florent', activite: 'Gîte / Chambres d\'hôtes'}, {lat: 42.70266250, lng: 9.44891430, nom: 'Hotel des Voyageurs',url: '/hotspot-wifi-hotel-bastia-hotel-des-voyageurs-4400.html',ville: 'Bastia', activite: 'Hôtel'}, {lat: 42.70984800, lng: 9.45135200, nom: 'Clinique de Toga',url: '/hotspot-wifi-clinique-hopital-ville-di-pietrabugno-clinique-de-toga-4483.html',ville: 'Ville Di Pietrabugno', activite: 'Clinique / Hôpital'}, {lat: 41.91389700, lng: 8.84194300, nom: 'Hôtel Acqua Dolce',url: '/hotspot-wifi-hotel-eccic-suarella-hotel-acqua-dolce-5798.html',ville: 'Eccic Suarella', activite: 'Hôtel'}, {lat: 41.91968330, lng: 8.73707330, nom: 'Bistrot du Cours',url: '/hotspot-wifi-bar-brasserie-ajaccio-bistrot-du-cours-6757.html',ville: 'Ajaccio', activite: 'Bar brasserie'}, {lat: 41.93742200, lng: 8.72764110, nom: 'Camping les Mimosas',url: '/hotspot-wifi-camping-ajaccio-camping-les-mimosas-7406.html',ville: 'Ajaccio', activite: 'Camping'}, {lat: 42.63371020, lng: 9.43763770, nom: 'L\'Atelier Informatique',url: '/hotspot-wifi-centre-commercial-biguglia-l-atelier-informatique-7875.html',ville: 'Biguglia', activite: 'Centre commercial'}, {lat: 42.68145850, lng: 9.44367680, nom: 'Sud Hotel',url: '/hotspot-wifi-hotel-bastia-sud-hotel-8022.html',ville: 'Bastia', activite: 'Hôtel'}, {lat: 41.84483810, lng: 9.05718870, nom: 'Gite du Chalet Pietri',url: '/hotspot-wifi-gite-chambres-d-hotes-olivese-gite-du-chalet-pietri-8316.html',ville: 'Olivese', activite: 'Gîte / Chambres d\'hôtes'}, {lat: 41.96666100, lng: 8.72832700, nom: 'Les Bergeries D\'Alata',url: '/hotspot-wifi-hotel-alata-les-bergeries-d-alata-9446.html',ville: 'Alata', activite: 'Hôtel'}, {lat: 42.64393000, lng: 9.33875200, nom: 'Sas les Arbousiers',url: '/hotspot-wifi-gite-chambres-d-hotes-saint-florent-sas-les-arbousiers-10527.html',ville: 'Saint Florent', activite: 'Gîte / Chambres d\'hôtes'}, {lat: 41.85727600, lng: 9.39086200, nom: 'Les Terrasses de Sari',url: '/hotspot-wifi-hotel-sari-solenzara-les-terrasses-de-sari-10757.html',ville: 'Sari Solenzara', activite: 'Hôtel'}, {lat: 42.56163300, lng: 9.52654800, nom: 'Oro Biancu',url: '/hotspot-wifi-agence-bancaire-lucciana-oro-biancu-10814.html',ville: 'Lucciana', activite: 'Agence bancaire'}, {lat: 42.70653100, lng: 9.36955400, nom: 'A Casa Di L\'Alivu',url: '/hotspot-wifi-gite-chambres-d-hotes-patrimonio-a-casa-di-l-alivu-11442.html',ville: 'Patrimonio', activite: 'Gîte / Chambres d\'hôtes'}, {lat: -99.00000000, lng: -99.00000000, nom: 'Camping des Nacres',url: '/hotspot-wifi-camping-solaro-camping-des-nacres-11495.html',ville: 'Solaro', activite: 'Camping'}, {lat: 42.43625800, lng: 9.53365300, nom: 'Residence Mare E Sole',url: '/hotspot-wifi-hotel-taglio-isolaccio-residence-mare-e-sole-12046.html',ville: 'Taglio Isolaccio', activite: 'Hôtel'} ]