Calendrier des Formations
Voir les détails de la formation
";
infowindow = new google.maps.InfoWindow({
content: contentString
});
marker.addListener('click', function () {
if(infowindow) {
infowindow.close();
}
infowindow.open(map, marker);
});
}
function setMapOnAll(map) {
for (var i in markers) {
markers[i].setMap(map);
}
}
function geocodeAddress(formation) {
geocoder.geocode({'address': formation["address"]}, function (results, status) {
if (status === google.maps.GeocoderStatus.OK) {
addMarkerToMap(formation, results[0].geometry.location);
} else {
console.log('Geocode was not successful for the following reason: ' + status);
}
});
}
function myPosition(position) {
var latLng = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
map.setCenter(latLng);
}
