是否可以使用 MapKit API 显示两个注释之间的路径?
我正在开发一个应用程序,它将向用户显示从数据库到用户最近的位置。当用户从列表中选择这些位置之一时,用户将在新屏幕上看到地图,该地图显示代表用户的注释以及代表该位置的另一个注释。
是否可以使用 MapKit API 向用户显示从用户到该位置的路径?我不是问如何显示逐向导航。我只想显示两个注释之间的路径。这可能吗?
I am working on an app that will show the user the closest locations from a database to the user. When the user selects one of these locations from a list, the user will then see a map on a new screen showing an annotation representing the user, and another annotation representing the location.
Is it possible using the MapKit API to show the user a path from the user to the location? I am not asking about how to show turn by turn directions. I just want to display a path between the two annotations. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 iOS 4.x 中,Apple 添加了对地图叠加的支持。阅读更多有关 MKPolyline 和 MKPolyline 的内容可能会有所帮助。
MKPolylineView
类和MKMapViewDelegate
协议中定义的mapView:viewForOverlay:
方法。所有内容均可在 Map Kit 框架参考中找到。In iOS 4.x, Apple added support for map overlays. It might help to read a little bit more about the
MKPolyline
&MKPolylineView
classes and themapView:viewForOverlay:
method defined in theMKMapViewDelegate
protocol. All available in the Map Kit Framework Reference.