22 janvier 2017

Calendrier des Formations

Calendrier des formations

Je fais mon choix :

ÇA SE PASSE PRÈS DE CHEZ MOI

COMMENT S’INSCRIRE ?

Je choisis ma formation
Je réserve
Je confirme par mail
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); }