google.maps.event.addListener(map,'bounds_changed',alert(“sth”))仅适用于第一次

时间:2012-09-16 16:04:28

标签: javascript google-maps-api-3

google.maps.event.addListener(map, 'bounds_changed', alert("say sth"))仅适用于第一次加载地图。之后,无论我如何拖动地图或缩放地图,警报都不会弹出。

同样google.maps.event.addListener(map, 'idle', alert("just pop twice!"))

1 个答案:

答案 0 :(得分:1)

将警报包装到一个函数中:

google.maps.event.addListener(map, 'idle', function(){alert("just pop twice!")})