如何在 googlemaps android 中显示我的所有标记?

发布于 2024-12-01 17:43:03 字数 110 浏览 0 评论 0原文

我有一系列纬度和经度点。我用它们在地图上做标记。我该怎么做才能同时显示地图上的所有标记?例如,进行良好的配合,以便如果标记位于城市内,我会将其放大以仅显示城市而不是整个州、国家等...

谢谢

I have an array of latitude and longitude points. I use them to make markers on the map. What can I do to show all of the markers on the map at the same time. eg make a good fit so that if the markers are within a city I zoom it in to only show the city and not the whole state, country etc...

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甚是思念 2024-12-08 17:43:03

简而言之,这样的东西可能会有所帮助,

private void centerGroup(int groupId){
    if(groupId>0){
        int minLat = Integer.MAX_VALUE;
        int maxLat = Integer.MIN_VALUE;
        int minLon = Integer.MAX_VALUE;
        int maxLon = Integer.MIN_VALUE;


        Cursor cursor = getYourLantLongs(groupId);

        if (cursor.moveToFirst()){
            final int LAT_INDEX = cursor.getColumnIndex(T.Waypoints.LATITUDE);
            final int LON_INDEX = cursor.getColumnIndex(T.Waypoints.LONGITUDE);

            do {
                final int lat = (int) (cursor.getFloat(LAT_INDEX)*1E6);
                final int lon = (int) (cursor.getFloat(LON_INDEX)*1E6);

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

            } while(cursor.moveToNext());


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

            /*
            final int cLat =  (int)((maxLat*1E6 + minLat*1E6)/2);
            final int cLon =  (int)((maxLon*1E6 + minLon*1E6)/2);

            final int zLat =  (int)Math.abs(maxLat - minLat);
            final int zLon =  (int)Math.abs(maxLon - minLon);

            //mapController.zoomToSpan(zLat, zLon);
            mapController.animateTo(new GeoPoint(cLat, cLon));
             */
        }
    }           
}

您可以制作一个正方形并放大。

something like this might help

private void centerGroup(int groupId){
    if(groupId>0){
        int minLat = Integer.MAX_VALUE;
        int maxLat = Integer.MIN_VALUE;
        int minLon = Integer.MAX_VALUE;
        int maxLon = Integer.MIN_VALUE;


        Cursor cursor = getYourLantLongs(groupId);

        if (cursor.moveToFirst()){
            final int LAT_INDEX = cursor.getColumnIndex(T.Waypoints.LATITUDE);
            final int LON_INDEX = cursor.getColumnIndex(T.Waypoints.LONGITUDE);

            do {
                final int lat = (int) (cursor.getFloat(LAT_INDEX)*1E6);
                final int lon = (int) (cursor.getFloat(LON_INDEX)*1E6);

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

            } while(cursor.moveToNext());


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

            /*
            final int cLat =  (int)((maxLat*1E6 + minLat*1E6)/2);
            final int cLon =  (int)((maxLon*1E6 + minLon*1E6)/2);

            final int zLat =  (int)Math.abs(maxLat - minLat);
            final int zLon =  (int)Math.abs(maxLon - minLon);

            //mapController.zoomToSpan(zLat, zLon);
            mapController.animateTo(new GeoPoint(cLat, cLon));
             */
        }
    }           
}

in short you make a square and zoom in.

短叹 2024-12-08 17:43:03

遍历数组并保存纬度和经度的最小值和最大值。
然后使用

mMapController.zoomToSpan((maxLatitude - minLatitude), (maxLongitude - minLongitude));

以获得正确的缩放级别。并将

mMapController.animateTo(new GeoPoint(

                                (maxLatitude + minLatitude)/2 ,

                                (maxLongitude + minLongitude)/2 ));

地图移动到标记的中心。

玩得开心!

Go through your array and save min and max values of latitude and longitude.
Then use

mMapController.zoomToSpan((maxLatitude - minLatitude), (maxLongitude - minLongitude));

to get the right zoom level. And

mMapController.animateTo(new GeoPoint(

                                (maxLatitude + minLatitude)/2 ,

                                (maxLongitude + minLongitude)/2 ));

to move the map to the center of your markers.

Have fun!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文