-1
我需要在customMarker
上打開infoWindow
。不要用自定義標記打開infoWindow。 (谷歌地圖)
InfoWindow未打開。 「點擊」 不工作:
$google.maps.event.addDomListener(overlay, 'click', function() {
console.log("test");
iw.open(map, this);
});
這裏是我的代碼:
$.getJSON(jsonShops, function(places) {
for (var i = 0, index = 0; i < places.shops.length; i++, index++) {
var bounds = new google.maps.LatLng(places.shops[i].lat, places.shops[i].lng);
var overlay = new MarkerSOverlay(bounds, alphabet.charAt(index), map);
var iw = new google.maps.InfoWindow({
content: "Simple",
position: bounds
});
google.maps.event.addDomListener(overlay, 'click', function() {
console.log("test");
iw.open(map, this);
});
}