如何迭代 Google 地图上的标记 (API 3)
我有以下地图:
var map = new google.maps.Map(document.getElementById('map'), myOptions);
并创建了几个标记来调用 new google.maps.Marker()
现在,我需要在单击复选框时隐藏某个组的所有标记,但无法找到迭代地图上所有标记的方法。
I have the following map:
var map = new google.maps.Map(document.getElementById('map'), myOptions);
and a couple of markers created calling to new google.maps.Marker()
Now I need to hide all the markers of a certain group when a checkbox is clicked but can't find a way to iterate through all the markers on the map.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以跟踪 Google 地图上的所有标记。 Google API 不会跟踪您添加的所有叠加层。创建标记对象时,将它们添加到数组中(不同的组使用不同的数组)。然后,当触发适当的事件时,迭代该特定数组并隐藏该组中的所有标记。
It's up to you to keep track of all markers on a Google Map. Google API does not keep track of all overlays you have added. When you create the Marker Objects add them to an array (different arrays for different groups). Then iterate through that specific array and hide all markers in that group, when the appropriate event is triggered.