function initMap() {
var centre = {lat: 46.52, lng: -0.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: 46.84229260, lng: -0.49348600,
nom: 'Adlm Cordeliers',url: '/hotspot-wifi-societe-bressuire-adlm-cordeliers-1090.html',ville: 'Bressuire', activite: 'Société'},
{lat: 46.83830020, lng: -0.49828980,
nom: 'Adlm Marolleau',url: '/hotspot-wifi-societe-bressuire-adlm-marolleau-1094.html',ville: 'Bressuire', activite: 'Société'},
{lat: 46.83612260, lng: -0.47638650,
nom: 'Location Hay D.',url: '/hotspot-wifi-collectif-bressuire-location-hay-d-3701.html',ville: 'Bressuire', activite: 'Collectif'},
{lat: 46.84012370, lng: -0.49523470,
nom: 'Adlm Alexandre',url: '/hotspot-wifi-societe-bressuire-adlm-alexandre-5004.html',ville: 'Bressuire', activite: 'Société'},
{lat: 46.22699200, lng: -0.16415900,
nom: 'Residence les Jardins de la Beronne',url: '/hotspot-wifi-ehpad-melle-residence-les-jardins-de-la-beronne-6684.html',ville: 'Melle', activite: 'EHPAD'},
{lat: 46.33883160, lng: -0.40579850,
nom: 'Ibis Niort',url: '/hotspot-wifi-hotel-niort-ibis-niort-6717.html',ville: 'Niort', activite: 'Hôtel'},
{lat: 46.32590610, lng: -0.45221230,
nom: 'Hotel du Parc',url: '/hotspot-wifi-hotel-niort-hotel-du-parc-7555.html',ville: 'Niort', activite: 'Hôtel'},
{lat: 46.92887000, lng: -0.81615400,
nom: 'Sas Transport J. Haye',url: '/hotspot-wifi-societe-mauleon-sas-transport-j-haye-9905.html',ville: 'Mauleon', activite: 'Société'},
{lat: 46.33918500, lng: -0.40072700,
nom: 'Niort',url: '/hotspot-wifi-hotel-niort-niort-10439.html',ville: 'Niort', activite: 'Hôtel'},
{lat: 46.33483800, lng: -0.47459800,
nom: 'Résidence du Cédre',url: '/hotspot-wifi-residence-de-services-niort-residence-du-cedre-10493.html',ville: 'Niort', activite: 'Résidence de services'},
{lat: 46.64882500, lng: -0.25144100,
nom: 'Un Toit En Gatine',url: '/hotspot-wifi-residence-etudiante-parthenay-un-toit-en-gatine-13031.html',ville: 'Parthenay', activite: 'Résidence étudiante'}
]