如何通过geopoints设置屏幕缩放?(How to set screen zoom by geo

2019-10-17 08:56发布

我画了2个geopoints之间的线路。 如何设置这些2个geopoints屏幕缩放。 我想要做的就是默认显示起点和终点。 是否有任何的算法是什么?

Answer 1:

在这里我所做的:

private void centerMap() {

            int minLat = Integer.MAX_VALUE;
            int maxLat = Integer.MIN_VALUE;
            int minLon = Integer.MAX_VALUE;
            int maxLon = Integer.MIN_VALUE;

            for (Point point : twoPoints) {

                    int lat = (int) (point.getLatitude() * 1E6);
                    int lon = (int) (point.getLongitude() * 1E6);

                    maxLat = Math.max(lat, maxLat);
                    minLat = Math.min(lat, minLat);
                    maxLon = Math.max(lon, maxLon);
                    minLon = Math.min(lon, minLon);
            }

                    mc.zoomToSpan(Math.abs(maxLat - minLat), Math.abs(maxLon - minLon));
            mc.animateTo(new GeoPoint((maxLat + minLat) / 2, (maxLon + minLon) / 2));
    }

(其中MC是你的MapController)



文章来源: How to set screen zoom by geopoints?