function initMap() {
var centre = {lat: 43.76, lng: 2.17} ;
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.04973960, lng: 2.15786210,
nom: 'Lo Ségalar',url: '/hotspot-wifi-bar-brasserie-carmaux-lo-segalar-803.html',ville: 'Carmaux', activite: 'Bar brasserie'},
{lat: 43.92468250, lng: 2.14901190,
nom: '0\'Sully\' S',url: '/hotspot-wifi-bar-brasserie-albi-0-sully-s-3150.html',ville: 'Albi', activite: 'Bar brasserie'},
{lat: 43.58652320, lng: 2.16658830,
nom: 'Saix-Résidence les Grands Chenes',url: '/hotspot-wifi-ehpad-saix-saix-residence-les-grands-chenes-5762.html',ville: 'Saix', activite: 'EHPAD'},
{lat: 43.92736600, lng: 2.14401120,
nom: 'Hôtel Saint-Clair',url: '/hotspot-wifi-hotel-albi-hotel-saint-clair-5995.html',ville: 'Albi', activite: 'Hôtel'},
{lat: 43.92588550, lng: 2.14923130,
nom: 'La Regalade',url: '/hotspot-wifi-restaurant-albi-la-regalade-7501.html',ville: 'Albi', activite: 'Restaurant'},
{lat: 43.88659010, lng: 2.46417830,
nom: 'Au Bon Accueil',url: '/hotspot-wifi-hotel-alban-au-bon-accueil-8724.html',ville: 'Alban', activite: 'Hôtel'},
{lat: 43.77212900, lng: 1.67636100,
nom: 'Aire les Portes du Tarn',url: '/hotspot-wifi-restaurant-saint-sulpice-la-pointe-aire-les-portes-du-tarn-10071.html',ville: 'Saint Sulpice la Pointe', activite: 'Restaurant'},
{lat: 43.81702100, lng: 1.73379300,
nom: 'Salle Polyvalente de Couffouleux',url: '/hotspot-wifi-mairie-couffouleux-salle-polyvalente-de-couffouleux-10166.html',ville: 'Couffouleux', activite: 'Mairie'},
{lat: 43.90328720, lng: 1.89265900,
nom: 'La Verrerie',url: '/hotspot-wifi-hotel-gaillac-la-verrerie-10404.html',ville: 'Gaillac', activite: 'Hôtel'},
{lat: 43.70023400, lng: 1.81586100,
nom: 'Hotel les Pasteliers',url: '/hotspot-wifi-hotel-lavaur-hotel-les-pasteliers-11175.html',ville: 'Lavaur', activite: 'Hôtel'},
{lat: -99.00000000, lng: -99.00000000,
nom: 'Mairie Couffouleux Berenguier',url: '/hotspot-wifi-mairie-couffouleux-mairie-couffouleux-berenguier-11269.html',ville: 'Couffouleux', activite: 'Mairie'},
{lat: -99.00000000, lng: -99.00000000,
nom: 'Mairie de Couffouleux Pôle Numérique',url: '/hotspot-wifi-agence-bancaire-couffouleux-mairie-de-couffouleux-pole-numerique-11270.html',ville: 'Couffouleux', activite: 'Agence bancaire'},
{lat: -99.00000000, lng: -99.00000000,
nom: 'L\'Inattendu',url: '/hotspot-wifi-gite-chambres-d-hotes-lavaur-l-inattendu-11605.html',ville: 'Lavaur', activite: 'Gîte / Chambres d\'hôtes'},
{lat: 43.77112000, lng: 1.68065700,
nom: 'Maison de Retraite Chez Nous',url: '/hotspot-wifi-ehpad-saint-sulpice-maison-de-retraite-chez-nous-12305.html',ville: 'Saint Sulpice', activite: 'EHPAD'},
{lat: 43.93423000, lng: 2.17476400,
nom: 'Feuillette Albi',url: '/hotspot-wifi-sandwicherie-albi-feuillette-albi-12989.html',ville: 'Albi', activite: 'Sandwicherie'}
]