6

我可以将 Google Maps V2 (Android) 限制在 180° / -180° 经度(如 iOS MapKit)吗?我不希望它环绕,因为我正在尝试实现一个 clusterin 算法,而 180 / -180 度的分割会使它变得困难。

我希望将平移限制在红线:

在此处输入图像描述

4

2 回答 2

3

所以我创建了一个应该没问题的解决方案。如果用户将地图平移到 -180 / 180 边界,则地图将翻转到另一侧。所以包裹地图仍然是可能的,但永远不会显示“危险”区域。

我必须创建一个自定义 MapView:

public class CustomMapView extends MapView {

    private double prevLongitude;

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        boolean retVal = correctCamera();
        prevLongitude = getMap().getCameraPosition().target.longitude;
        return retVal;
    }

    public boolean correctCamera() {    
        if (getMap().getProjection().getVisibleRegion().latLngBounds.northeast.longitude < getMap().getProjection().getVisibleRegion().latLngBounds.southwest.longitude) {
            double diff = getMap().getProjection().getVisibleRegion().latLngBounds.southwest.longitude - getMap().getProjection().getVisibleRegion().latLngBounds.northeast.longitude;
            double longitudeSW;
            double longitudeNE;

            double longitudeDiff = (360-diff) / 25; 

            // use > 0 if you want the map to jump to the other side
            // <= 0 will cause the map to flip back
            if (prevLongitude > 0) {
                longitudeSW = -180 + longitudeDiff;
                longitudeNE = -180 + longitudeDiff - diff;
            } else {
                longitudeSW = 180 - longitudeDiff + diff;
                longitudeNE = 180 - longitudeDiff;
            }
            LatLngBounds bounds = new LatLngBounds(
                                        new LatLng(getMap().getCameraPosition().target.latitude, longitudeSW), 
                                        new LatLng(getMap().getCameraPosition().target.latitude, longitudeNE)
                                  );
            getMap().animateCamera(CameraUpdateFactory.newLatLngBounds(bounds, 0));

            return true;
        }

        return false;
    }
}

和xml:

<com.ieffects.clustermap.CustomMapView
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

对于 GoogleMap (mapView.getMap()):

map.setOnCameraChangeListener(new OnCameraChangeListener() {
    @Override
    public void onCameraChange(CameraPosition position) {
        mapView.correctCamera();
    }
});

如果用户让地图“飞”到危险区域,则需要这样做。

于 2013-01-28T14:53:49.927 回答
1

请参阅本教程v2http ://econym.org.uk/gmap/range.htm - 基本上,您为移动事件添加一个侦听器,如果超出范围则中止移动。这也应该适用于v3

于 2013-01-28T12:00:58.073 回答