';
var infowindow = new google.maps.InfoWindow({
content: contentString,
maxWidth: 300
});
markersArray[markersArray.length]= new google.maps.Marker({
position: new google.maps.LatLng(46.84624,-1.88046),
map: map,
title:"Maison de la Presse"
});
markersArray[(markersArray.length - 1)]._infowindow = infowindow;
google.maps.event.addListener(markersArray[(markersArray.length - 1)], 'click', function() {
for(var i in markersArray){
markersArray[i]._infowindow.close();
}
this._infowindow.open(map, this);
});
tempoMarker = new google.maps.LatLng(46.84741,-1.87581);
latlng.push(tempoMarker);
var contentString = '
'+
'
Le Vent des Fleurs
'+
''+
'CHALLANS '+
''+
'
> En savoir plus
'+
'
';
var infowindow = new google.maps.InfoWindow({
content: contentString,
maxWidth: 300
});
markersArray[markersArray.length]= new google.maps.Marker({
position: new google.maps.LatLng(46.84741,-1.87581),
map: map,
title:"Le Vent des Fleurs"
});
markersArray[(markersArray.length - 1)]._infowindow = infowindow;
google.maps.event.addListener(markersArray[(markersArray.length - 1)], 'click', function() {
for(var i in markersArray){
markersArray[i]._infowindow.close();
}
this._infowindow.open(map, this);
});
//Pour centrer et zoomer correctement la map
if (latlng.length > 0) {
var latlngbounds = new google.maps.LatLngBounds( );
for ( var i = 0; i