1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| function initialiser() {
var latlng = new google.maps.LatLng(48.6232842, 1.8247111); // Adresse d'initialisation
var options = {
center: latlng,
zoom: 7,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var carte = new google.maps.Map(document.getElementById("carte"), options);
// Création du Marqueur
var marqueur = new google.maps.Marker({
position: new google.maps.LatLng( , ),
map: carte
});
// Création d'une InfoBulle
var contenuInfoBulle = '<p>Nom ville </p>' + '<p> Code postal : </p>';
var infoBulle = new google.maps.InfoWindow({
content: contenuInfoBulle
})
google.maps.event.addListener(marqueur, 'click', function() {
infoBulle.open(carte, marqueur);
});
} |
Partager