Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个 Android 应用程序。我需要找出使用 2 个给定点构建的 MBR 下的地图部分。
这可以通过 Google Maps API 实现吗?请帮我。
在此先感谢,巴拉特
这fitBounds是为了:
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/