如何触发谷歌地图V3上标记的onclick事件?
2022-08-30 04:23:06
如何从地图外部触发 Google 地图上标记的 onclick 事件?
我使用 API 的版本 3。我看过许多版本2的教程,但找不到版本3的教程。
我有一个包含地图所有标记的全局数组(命名标记)(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');
感谢您的帮助,如果您需要更多信息,请告诉我!