0
我目前卡在谷歌地圖v3。 我嘗試以這種方式手動添加邊界,但它不起作用!?谷歌地圖→fitBounds手動
map.fitBounds((53.399999, 9.73215099999993), (53.717145, 10.123491999999942));
我目前卡在谷歌地圖v3。 我嘗試以這種方式手動添加邊界,但它不起作用!?谷歌地圖→fitBounds手動
map.fitBounds((53.399999, 9.73215099999993), (53.717145, 10.123491999999942));
fitBounds
期望類型LatLngBounds
,其又具有兩個LatLng
對象初始化的目的。
這應該工作:
sw = new LatLng(53.399999, 9.73215099999993);
ne = new LatLng(53.717145, 10.123491999999942);
bounds = new LatLngBounds(sw, ne)
map.fitBounds(bounds);
參考: