调整绘制的叠加层以匹配道路

发布于 2024-12-11 22:15:53 字数 233 浏览 0 评论 0 原文

在我的应用程序中,我可以在地图(MKMapView)上绘制叠加层(PolyLine)。然而,这种覆盖并不局限于实际的道路。有没有办法(某些 API 或其他)来调整覆盖层,使其覆盖/覆盖真实的道路。

该应用程序在移动设备(iPod Touch 和 iPhone)上运行,因此为了不使我的应用程序成为非常耗电量的应用程序,我不会将核心位置精度设置为最高。因此,该位置将稍微靠近您所在的道路。那么我仍然希望我的程序能够调整这个错误......

In my application I can draw an overlay (PolyLine) on my map (MKMapView). This overlay however, is not bounded to actual roads. Is there a way (some API or others) to adapt the overlay so that it covers/overlays a real road.

The application is run on mobile devices (iPod Touch & iPhone), so to not make my app a very battery consuming one, I would set the Core Location Accuracy not to the highest. As a result, the location will be a bit next to the road where you are. Then I would still like my program to adjust this error...

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

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

发布评论

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

评论(1

a√萤火虫的光℡ 2024-12-18 22:15:53

为了获得与实际道路匹配的叠加层,我使用了 Google Maps API Webservices。我已经拥有形成路线的所有点的数组,并且我使用这些点(坐标)轻松创建映射在真实道路上的叠加层。

  • 我使用第一个点和最后一个点在之间创建导航,并将所有其他点设置为“路径点”,请参阅方向 API
  • 要查找某个点的最近地址,我使用了地理编码 API

Google 地图 API Web 服务: http://code.google.com/intl/nl-NL/apis/maps/documentation/webservices/

To get an overlay that matches actual roads, I used Google Maps API Webservices. I already had an array of all points forming a route and I used these points (coordinates) to easily create an overlay that maps on real roads.

  • I used the first and last point to create a navigation between and set all the other points as 'waypoints', see Directions API
  • To find the nearest address of a point, I used the Geocoding API

Google Maps API Webservices: http://code.google.com/intl/nl-NL/apis/maps/documentation/webservices/

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