如何缩放MapView以便它总是包含两个地理点?

时间:2011-09-22 10:22:32

标签: android android-mapview

我有两个间歇性变化的地理点,并希望MapView调整大小并进行平移,以确保两个点始终可见。我可以轻松地将地图重新​​定位在两者之间的中间位置,但如何设置缩放级别以确保我的两个点可见?

3 个答案:

答案 0 :(得分:5)

在另一篇文章中查看他的答案: Google Map V2 how to set ZoomToSpan?

它解决它没有太多麻烦。请注意,您只能在地图加载至少一次后才能使用该功能。如果不在屏幕上使用具有指定地图大小的功能

LatLngBounds bounds = new LatLngBounds.Builder()
                    .include(new LatLng(CURRENTSTOP.latitude, CURRENTSTOP.longitude))
                    .include(new LatLng(MYPOSITION.latitude, MYPOSITION.longitude)).build();

Point displaySize = new Point();
getWindowManager().getDefaultDisplay().getSize(displaySize);

map.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, displaySize.x, 250, 30));

像魅力一样充满活力!

答案 1 :(得分:4)

试试这个,看看:

double latitudeSpan = Math.round(Math.abs(firstLat - 
                secLat));
double longitudeSpan = Math.round(Math.abs(firstLong - 
                secLong));

double currentLatitudeSpan = (double)mapView.getLatitudeSpan();
double currentLongitudeSpan = (double)mapView.getLongitudeSpan();

double ratio = currentLongitudeSpan/currentLatitudeSpan;
if(longitudeSpan < (double)(latitudeSpan+2E7) * ratio){
    longitudeSpan = ((double)(latitudeSpan+2E7) * ratio);
}

mapController.zoomToSpan((int)(latitudeSpan*2), (int)(longitudeSpan*2));                
mapView.invalidate();

答案 2 :(得分:0)

在新的Maps API(v2)中,您可以这样做:

LatLng southwest = new LatLng(Math.min(laglng1.latitude, laglng2.latitude), Math.min(laglng1.longitude, laglng2.longitude));
LatLng northeast = new LatLng(Math.max(laglng1.latitude, laglng2.latitude), Math.max(laglng1.longitude, laglng2.longitude));
googleMap.moveCamera(CameraUpdateFactory.newLatLngBounds(new LatLngBounds(southwest, northeast),500,500, 0));