2016-10-24 92 views
-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); 
     }); 
} 

回答

1

變化addDomListeneraddListener

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

addListener是google.maps對象(如標記) ,addDomListener用於DOM節點。

相關問題