24

我正在使用具有此布局的新 Android 地图 V2:

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:map="http://schemas.android.com/apk/res-auto"
  android:id="@+id/map"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  class="com.google.android.gms.maps.SupportMapFragment"
  map:cameraBearing="270"/>

我正在尝试使用方法 newLatLngBounds (LatLngBounds bounds, int padding) 来缩放和查看地图中的所有标记,但是相机方位设置为 0。

谷歌开发者文档上的描述说:

public static CameraUpdate newLatLngBounds (LatLngBounds bounds, int padding) (...) 。返回的 CameraUpdate 的方位角为 0,倾斜角为 0。(...)"。

如何更改轴承值?

在调用 newLatLngBounds 后,我尝试以编程方式设置新方位,如下所示:

mMap.moveCamera(CameraUpdateFactory.newLatLngBounds(bounds, 100));
mMap.moveCamera(CameraUpdateFactory.newCameraPosition(new CameraPosition.Builder()
.target(mMap.getCameraPosition().target)
.zoom(mMap.getCameraPosition().zoom)
.bearing(270)
.build()));

但是当我这样做时,一些标记不会出现。

4

3 回答 3

16

我有一个替代方案,我有同样的问题。我将展示如何将边界转换为缩放,然后我们将简单地使用 CameraPosition.builder() 来创建正确的位置。

private static final double LN2 = 0.6931471805599453;
    private static final int WORLD_PX_HEIGHT = 256;
    private static final int WORLD_PX_WIDTH = 256;
    private static final int ZOOM_MAX = 21;

    public int getBoundsZoomLevel(LatLngBounds bounds, int mapWidthPx, int mapHeightPx){

        LatLng ne = bounds.northeast;
        LatLng sw = bounds.southwest;

        double latFraction = (latRad(ne.latitude) - latRad(sw.latitude)) / Math.PI;

        double lngDiff = ne.longitude - sw.longitude;
        double lngFraction = ((lngDiff < 0) ? (lngDiff + 360) : lngDiff) / 360;

        double latZoom = zoom(mapHeightPx, WORLD_PX_HEIGHT, latFraction);
        double lngZoom = zoom(mapWidthPx, WORLD_PX_WIDTH, lngFraction);

        int result = Math.min((int)latZoom, (int)lngZoom);
        return Math.min(result, ZOOM_MAX);
    }

    private 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 double zoom(int mapPx, int worldPx, double fraction) {
        return Math.floor(Math.log(mapPx / worldPx / fraction) / LN2);
    }

然后您可以使用此代码并添加带有边界的方位/和/或倾斜:

            LatLngBounds bounds = LatLngBounds.builder()
                    .include(swCorner)
                    .include(neCorner).build();
            CameraPosition cp = new CameraPosition.Builder()
                    .bearing(randomBearing())
                    .tilt(randomTilt())
                    .target(latLng)
                    .zoom(getBoundsZoomLevel(bounds, findViewById(R.id.map).getMeasuredWidth(), findViewById(R.id.map).getMeasuredHeight()))
                    .build();
            CameraUpdate cu = CameraUpdateFactory.newCameraPosition(cp);
            mMap.animateCamera(cu);

这将起作用(您必须将 mMap 更改为您的实际地图变量,并将 id 更改为您的地图 id)。

祝你好运!我从帖子中获得了 boundZoomLevel:如何在使用 map.fitBounds 之前确定 LatLngBounds 的缩放级别? 如果你有时间,也去喜欢那个答案!

于 2014-09-15T17:57:33.030 回答
5

是的你可以!只需使用: https ://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap#animateCamera (com.google.android.gms.maps.CameraUpdate, int, com.google.android .gms.maps.GoogleMap.CancelableCallback)

并实现 CancelableCallback 并放入 onFinish() 方法: https://developers.google.com/android/reference/com/google/android/gms/maps/GoogleMap.CancelableCallback#onFinish()

更换轴承的代码。当然,您不会得到一个动画,而是两个动画链,但它会起作用!

mMap.animateCamera(CameraUpdateFactory.newLatLngBounds(bounds, 100)/*,DURATION_IN_MS_IF_NEEDED*/,new GoogleMap.CancelableCallback(){
    @Override
    public void onCancel() {
        //DO SOMETHING HERE IF YOU WANT TO REACT TO A USER TOUCH WHILE ANIMATING
    }
    @Override
    public void onFinish() {
        mMap.animateCamera(CameraUpdateFactory.newCameraPosition(new CameraPosition.Builder()
/*.target(mMap.getCameraPosition().target)
.zoom(mMap.getCameraPosition().zoom)*/
.bearing(270)
.build()));
    }
});

我认为您不需要目标和缩放,我将它们注释掉,因为它应该由以前的动画管理

编辑 更好地查看 API,我有一个可行的方法(我现在无法测试它,请看一下:拥有 LatLngBounds 你可以获得最适合该区域的缩放级别(这取决于在设备尺寸上,因此您必须在运行时获取视图尺寸),然后,当您进行缩放时(您还有 LatLngBounds 的中心),您可以使用一个独特的动画进行相机更新: https:// developers.google.com/android/reference/com/google/android/gms/maps/model/CameraPosition,构造函数允许设置值,或者您可以使用之前看到的构建器。

您可以在网上找到各种方法来做到这一点,例如(只需在线快速搜索即可获得 javascript 版本https://stackoverflow.com/a/13274361/4120431

希望这可以帮助您解决您的问题!

于 2015-06-03T09:58:23.410 回答
-4

Google 的 CameraUpdateFactory 上的坏问题我用时间解决了,时间跨度很小!

public void zoomToBounds() {
    LatLngBounds latLngBounds = getBoundsOfInput(inputPoints);
    final int PADDING = 20;

    final CameraPosition now = map.getCameraPosition();
    final float tilt = map.getCameraPosition().tilt;
    final float bearing = map.getCameraPosition().bearing;
    final LatLng[] target = new LatLng[1];
    final float[] zoom = new float[1];

    map.animateCamera(CameraUpdateFactory.newLatLngBounds(latLngBounds, PADDING), 1, null);

    new Handler().postDelayed(new Runnable() {
        @Override
        public void run() {
            target[0] = map.getCameraPosition().target;
            zoom[0] = map.getCameraPosition().zoom;
        }
    }, 10);
    new Handler().postDelayed(new Runnable() {
        @Override
        public void run() {
            map.animateCamera(CameraUpdateFactory.newCameraPosition(now), 1, null);
        }
    }, 30);

    new Handler().postDelayed(new Runnable() {
        @Override
        public void run() {
            map.animateCamera(CameraUpdateFactory.newCameraPosition(new CameraPosition(target[0], zoom[0], tilt, bearing)));
        }
    }, 60);
}

看起来很脏,但有效

3 Handler 做事,每一个postdelay必须大于前一个

于 2013-08-30T09:35:04.947 回答