我需要一個事件偵聽器等待點擊。不幸的是,與InfoWindows
的工作似乎並沒有在這裏工作的方式......谷歌地圖API - 事件偵聽器InfoBubble不起作用
好了,這裏是我的InfoBubble
:
var infoBubble = new InfoBubble({
map: map,
content: $('#my-div').html(),
position: new google.maps.LatLng(areas[area].lat, areas[area].lng),
shadowStyle: 1,
padding: 0,
borderRadius: 0,
arrowSize: 10,
borderWidth: 1,
borderColor: '#ccc',
disableAutoPan: true,
hideCloseButton: true,
arrowPosition: 15,
arrowStyle: 0
});
這是我的聽衆:
google.maps.event.addListener(infoBubble, 'click', function(){
console.log("noodle");
});
BTW,有沒有錯誤報告由Firebug。
'$(infoBubble.e)。在( 「點擊」,功能(E){})'在版本的Works生活已貶值的jQuery。 –