我想将一定数量的地理位置传递到Google Maps API,并将其置于这些位置的中心位置,并设置相应的缩放级别,以便在地图上显示所有位置.即显示当前在地图上的所有标记.
这可能是Google Maps API默认提供的内容,还是我需要自行解决这个问题?
我为每个点使用了fitBounds(API V3):
声明变量.
var bounds = new google.maps.LatLngBounds();
使用FOR循环遍历每个标记
for (i = 0; i < markers.length; i++) { var latlng = new google.maps.LatLng(markers[i].lat, markers[i].lng); bounds.extend(latlng); }
最后打电话
map.fitBounds(bounds);