-1
如何獲取此Google地圖以調整到折線界限的界限?Google地圖的折線界限
我想我是正確使用此:
var bounds = new google.maps.LatLngBounds();
decodedPath.getPath().forEach(function(LatLng) {
bounds.extend(LatLng);
});
map.setBounds(bounds);
但我也認爲,我把它放錯了地方。
v3中沒有'GPolyline.getBounds()',因爲它存在於v2中。 Javascript不是我的強項,但我很樂意爲此尋找解決方案 – user1194034