这是谷歌地图API中的错误吗?
如果我使用原型库添加mouseenter和mouseleave事件处理程序,它可以正常工作。 But if I use addDomListener, it doesn't work.虽然它适用于Firefox,但事件处理功能永远不会在Chrome或Safari中调用。
答案 0 :(得分:0)
使用Maps API将事件处理程序添加到Map或其他API对象。
地图输入/输出示例:
google.maps.event.addListener(map, "mouseover", function() {
// Mouse Entered the Map
});
google.maps.event.addListener(map, "mouseout", function() {
// Mouse Left the Map
});
Maps API Reference Guide - Scroll to Events for the Map to See All Map Event Options