如何查找Google Maps V3上当前可见的所有标记?

时间:2013-11-22 13:03:22

标签: google-maps google-maps-markers

我有一个侧边栏,我想在其上显示放置在Google地图上的所有标记。当我通过拖动地图来改变Veiwport。标记列表应该刷新。

1 个答案:

答案 0 :(得分:4)

要获得所有标记,首先必须找到当前视口的边界,然后必须循环所有标记并查看它们是否包含在边界内。以下是一个例子。

var bounds =map.getBounds();

for(var i = 0; i < markers.length; i++){ // looping through my Markers Collection        
if(bounds.contains(markers[i].position))
 console.log("Marker"+ i +" - matched");
}