-1
infoWindow
をcustomMarker
に開設する必要があります。カスタムマーカーでinfoWindowを開かないでください。 (Googleマップ)
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);
});
}