5

我正在使用com.google.android.gms.maps.GoogleMap.SherlockFragmentActivity

XML 代码是这样的:

            <fragment
                android:id="@+id/map"
                android:name="com.google.android.gms.maps.SupportMapFragment"
                android:layout_width="fill_parent"
                android:layout_height="150dip" />

int zoomLevel =? // 我如何计算两个不同 latlong 值的缩放级别,因为 android map v3 需要将缩放级别告知为 int

map.setZoom(zoomLevel);

我有起始值和目的地值com.google.android.gms.maps.model.LatLng

LatLng 开始,结束;

我正在添加一个像GoogleLocation.addPolyLineOnGMap(mMap, startPoint, endPoint, startMarker, endMarker)

我的问题是如何计算谷歌地图的缩放级别,以便它可以在地图上适当地显示两个标记。

4

3 回答 3

16

使用 LatLngBounds.Builder 在其中添加所有边界并构建它,然后创建 CameraUpdate 对象并在其中传递边界 updatefactory 并使用填充。使用此 CameraUpdate 对象为地图相机设置动画。

LatLngBounds.Builder builder = new LatLngBounds.Builder();
        for (Marker m : markers) {
            builder.include(m.getPosition());
        }
        LatLngBounds bounds = builder.build();
        int padding = ((width * 10) / 100); // offset from edges of the map
                                            // in pixels
        CameraUpdate cu = CameraUpdateFactory.newLatLngBounds(bounds,
                padding);
        mMap.animateCamera(cu);
于 2013-09-06T21:27:28.573 回答
4

对我来说,我需要计算初始地图设置的缩放比例GoogleMapOptions,因此使用LatLngBounds.Builder 将不起作用且未优化。这就是我根据城市的东北和西南坐标计算缩放的方式

在这里引用和这个答案,你可以简单地将下面的代码放到你的助手类中:

final static int GLOBE_WIDTH = 256; // a constant in Google's map projection
final static int ZOOM_MAX = 21;

public static int getBoundsZoomLevel(LatLng northeast,LatLng southwest,
                                     int width, int height) {
    double latFraction = (latRad(northeast.latitude) - latRad(southwest.latitude)) / Math.PI;
    double lngDiff = northeast.longitude - southwest.longitude;
    double lngFraction = ((lngDiff < 0) ? (lngDiff + 360) : lngDiff) / 360;
    double latZoom = zoom(height, GLOBE_WIDTH, latFraction);
    double lngZoom = zoom(width, GLOBE_WIDTH, lngFraction);
    double zoom = Math.min(Math.min(latZoom, lngZoom),ZOOM_MAX);
    return (int)(zoom);
}
private static double latRad(double lat) {
    double sin = Math.sin(lat * Math.PI / 180);
    double radX2 = Math.log((1 + sin) / (1 - sin)) / 2;
    return Math.max(Math.min(radX2, Math.PI), -Math.PI) / 2;
}
private static double zoom(double mapPx, double worldPx, double fraction) {
    final double LN2 = .693147180559945309417;
    return (Math.log(mapPx / worldPx / fraction) / LN2);
}

LatLng简单地创建new LatLng(lat-double, lng-double)

width并且height是以像素为单位的地图布局大小

于 2015-07-25T12:33:08.467 回答
1

在安卓中:

LatLngBounds group = new LatLngBounds.Builder()
                .include(tokio)   // LatLgn object1
                .include(sydney)  // LatLgn object2
                .build();

mMap.animateCamera(CameraUpdateFactory.newLatLngBounds(group, 100)); // Set Padding and that's all!
于 2019-08-08T13:41:43.353 回答