var myMarkerImage = ''; var latlngbounds; function gMapInitialize() { // France var myLatlng = new google.maps.LatLng(46.227638, 2.213749); // Carte centrée sur le cinéma var myMapOptions = { zoom: 6, center: myLatlng, mapTypeId: google.maps.MapTypeId.ROADMAP }; // Création de la carte map = new google.maps.Map( document.getElementById('map_canvas'), myMapOptions ); latlngbounds = new google.maps.LatLngBounds();//Liste de coordonnees, utilisees pour centrer / zoomer la carte automatiquement markers_init() ; } function gMapCreateMarker(lat, long, htmlContent,imgUrl) { // Création de l'icône var myMarkerImage = new google.maps.MarkerImage(imgUrl); var myLatlng = new google.maps.LatLng(lat, long); latlngbounds.extend( myLatlng );//pour auto centrage / zoom // Création du marker var myMarker = new google.maps.Marker({ // Coordonnées du cinéma position: myLatlng, map: map, // Nous ajoutons un paramètre supplémentaire // icon pour lequel nous donnons le MarkerImage // que nous venons de créer. icon: myMarkerImage, title: "Cliquez pour plus d'informations" }); // Options de la fenêtre var myWindowOptions = { content:htmlContent }; // Création de la fenêtre var myInfoWindow = new google.maps.InfoWindow(myWindowOptions); // Affichage de la fenêtre au click sur le marker google.maps.event.addListener(myMarker, 'click', function() { myInfoWindow.open(map,myMarker); }); }