Android 中 MapActivity (ItemizedOverlay) 中的点组放大

发布于 2024-10-03 18:57:04 字数 140 浏览 4 评论 0原文

如果我希望所有 POI 在地图中可见,那么我需要动态调整两个参数:

  • 的中心焦点
  • 地图缩放步骤

我想知道 MapActivity 中是否已经内置了这样的行为?如果没有,您能给我提供示例代码吗?

If I want all my POIs to be visible in the Map, then I need to adjust two parameters dynamically:

  • Center-Focus of the Map
  • Zoom step

I am wondering if there is such a behavior already built into the MapActivity? If not, could you provide me sample code?

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

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

发布评论

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

评论(1

青柠芒果 2024-10-10 18:57:04

答案不是找到一组点中的中心点,然后调用mapController.zoomToSpan(centrePoint)。相反,请在 ItemizedOverlay 中执行以下操作:

public void calculateMapBounds()
{       
    int minLat = Integer.MAX_VALUE;
    int minLon = Integer.MAX_VALUE;
    int maxLat = Integer.MIN_VALUE;
    int maxLon = Integer.MIN_VALUE;

    for (LocatorPosition position : mPositions)
    {
        minLat = Math.min(position.getLatitudeE6(), minLat);
        minLon = Math.min(position.getLongitudeE6(), minLon); 
        maxLat = Math.max(position.getLatitudeE6(), maxLat); 
        maxLon = Math.max(position.getLongitudeE6(), maxLon);
    }

    spanLat = maxLat - minLat;
    spanLon = maxLon - minLon;

}

然后调用 mapController.zoomToSpan(spanLat, spanLon);

The answer is not to find the centre point amongst a group of points and then call mapController.zoomToSpan(centrePoint). Instead, do the following in your ItemizedOverlay:

public void calculateMapBounds()
{       
    int minLat = Integer.MAX_VALUE;
    int minLon = Integer.MAX_VALUE;
    int maxLat = Integer.MIN_VALUE;
    int maxLon = Integer.MIN_VALUE;

    for (LocatorPosition position : mPositions)
    {
        minLat = Math.min(position.getLatitudeE6(), minLat);
        minLon = Math.min(position.getLongitudeE6(), minLon); 
        maxLat = Math.max(position.getLatitudeE6(), maxLat); 
        maxLon = Math.max(position.getLongitudeE6(), maxLon);
    }

    spanLat = maxLat - minLat;
    spanLon = maxLon - minLon;

}

Then call mapController.zoomToSpan(spanLat, spanLon);

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