假设我正在使用以下 JSON 位置:
var beaches = [
['Bondi Beach', -33.890542, 151.274856, 4],
['Coogee Beach', -33.923036, 151.259052, 5],
['Cronulla Beach', -34.028249, 151.157507, 3],
['Manly Beach', -33.80010128657071, 151.28747820854187, 2],
['Maroubra Beach', -33.950198, 151.259302, 1]
];
我在谷歌地图上绘制这些,我想大致集中在中间的那个上。
谷歌地图 api 中是否有执行此操作的功能?还是我必须自己计算平均值?
我编写了一个函数,可以将 JSON 和缩放级别传递给:
function initialize_map(places, zoom) {
// use first coordinates in the json to initiate the map
var place_lat_lng = new google.maps.LatLng(places[0][1],places[0][2]);
var mapOptions = {
zoom: zoom,
center: place_lat_lng,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById('map_canvas'),
mapOptions);
var marker, i;
// loop through all the places to get markers
for (var i=0;i<places.length;i++)
{
var place = places[i];
marker = new google.maps.Marker({
position: new google.maps.LatLng(place[1], place[2]),
map: map,
animation: google.maps.Animation.DROP
});
// add the marker
marker.setMap(map);
}
}
此功能有效,但不居中,标记将不在视线范围内。
您将如何将视图居中并使其所有标记都可见?