1

我正在编写一个 Android 应用程序。我需要找出使用 2 个给定点构建的 MBR 下的地图部分。

这可以通过 Google Maps API 实现吗?请帮我。

在此先感谢,巴拉特

4

1 回答 1

0

fitBounds是为了:

var bounds = new google.maps.LatLngBounds();
bounds.extend(new google.maps.LatLng(35, 10)); // point 1
bounds.extend(new google.maps.LatLng(40, 15)); // point 2
map.fitBounds(bounds);

http://jsfiddle.net/jhTLL/

于 2013-12-29T07:01:24.810 回答