回答

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

+0

好吧,這些是我一直在尋找的事件。不知道我是如何讓它們與mouseenter和mouseleave混淆的。 – 2013-05-01 18:02:23

相關問題