我目前陷入谷歌地图v3。 我尝试以这种方式手动添加边界,但它不起作用!?
map.fitBounds((53.399999, 9.73215099999993), (53.717145, 10.123491999999942));
答案 0 :(得分:5)
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);
参考: