2
如何在Google Maps V3上触发标记的onclick事件?
如何从地图外部触发Google地图上标记的onclick事件? 我使用API的版本3。我已经看过许多有关版本2的教程,但是找不到关于版本3的教程。 我有一个全局数组(名为markers),其中包含地图的所有标记(google.maps.Marker)。现在我想做类似的事情: markers[i].click(); //I know it's not working, but you get the idea... //Next line seems to be the way in v2, but what's the equivalent in v3? GEvent.trigger(markers[i], 'click'); 感谢您的帮助,如果您需要更多信息,请告诉我!