Android - 位置地图显示自定义路线覆盖

发布于 2024-11-04 08:49:42 字数 105 浏览 3 评论 0原文

我有一个自定义叠加层,它基本上将坐标列表中的路线绘制到地图上。这一切都工作正常,但我需要地图在第一次加载时设置其位置和缩放级别,以便将路线适合地图视图控件。

如何才能实现这一目标?

I have a custom overlay that basically draws a route from a list of co-ordinates onto a map. This all works fine but I need the map, when it first loads, to set its position and zoom level so it fits the route into the mapview control.

How can this be achieved?

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

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

发布评论

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

评论(1

淡看悲欢离合 2024-11-11 08:49:43

我想通了。

首先,我需要找到路线的最小和最大、纬度和经度坐标。

有了这些,我可以像这样设置中心:

centerPoint = new GeoPoint((int)((minLat+((maxLat-minLat)/2))* 1e6), (int)((minLon+((maxLon-minLon)/2))* 1e6));
mController.setCenter(centerPoint);

并像这样设置缩放级别:

mController.zoomToSpan((int)((maxLat - minLat)* 1e6), (int)((maxLon - minLon)* 1e6));

I figured it out.

Firstly I needed to find the min and max, lat and long coordinates of my route.

With these I could set the centre like so:

centerPoint = new GeoPoint((int)((minLat+((maxLat-minLat)/2))* 1e6), (int)((minLon+((maxLon-minLon)/2))* 1e6));
mController.setCenter(centerPoint);

and set the zoom level like so:

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