如何仅在用户停止使用鼠标后触发事件?因为我不想在缩放期间调用我的 ajax(例如,6 次放大会触发 6 个事件,但我只需要 1 个事件,当放大完成时)
这个函数延迟了执行,然而,它仍然执行所有的事件......
google.maps.event.addListener(map, 'center_changed', function() {
// 3 seconds after the center of the map has changed
window.setTimeout(function() {
myfunction());
}, 3000);
});