こんにちは、マーキーの 2 つの情報ウィンドウ onclick を使用して Google マップ API v3 マップを作成しました。
しかし、情報ウィンドウは空です:
var carte = new google.maps.Map(document.getElementById("Gmap"), options);
var marqueur = new google.maps.Marker({
position: new google.maps.LatLng(43.546993,5.441062),
map: carte
});
var marqueur2 = new google.maps.Marker({
position: new google.maps.LatLng(43.529038, 5.45251),
map: carte
});
var infowindow = new google.maps.InfoWindow({
content: "<div id='content' style='color:#000 !important'>Hammam des Prêcheurs, 10 rue Felicien David 13100 Aix en Provence</div>"
});
var infowindow2 = new google.maps.InfoWindow({
content: "<div id='content2' style='color:#000 !important'>Salle Clos Beaufort 560, Rte Puy Ste Réparade, 13540 Puyricard</div>"
});
infowindow.open(carte, marqueur);
google.maps.event.addListener(marqueur, 'click', function() {
infowindow.open(carte, marqueur);
});
google.maps.event.addListener(marqueur2, 'click', function() {
infowindow2.open(carte, marqueur2);
});
これを解決するアイデアはありますか?
ありがとう