2016-10-24 17 views
-1

infoWindowcustomMarkerに開設する必要があります。カスタムマーカーで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); 
     }); 
} 

答えて

1

変更addDomListener

addListener

google.maps.event.addListener(overlay, 'click', function() { 
    console.log("test"); 
    iw.open(map, this); 
}); 

addListenerに(マーカーなど)google.mapsオブジェクトのです addDomListenerはDOMノード用です。

関連する問題