google maps→fitBounds手动

时间:2011-12-07 19:22:15

标签: javascript google-maps google-maps-api-3

我目前陷入谷歌地图v3。 我尝试以这种方式手动添加边界,但它不起作用!?

map.fitBounds((53.399999, 9.73215099999993), (53.717145, 10.123491999999942));

1 个答案:

答案 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);

参考: