如何在MapView中绘制路线
是否可以在MKMapView中绘制路线。 我想绘制从当前位置到指定地点的路线。 如果您有示例应用程序,请给我一个链接或请给我一些有关它的提示。
谢谢...
Is it possible to draw route in MKMapView.
I want to draw route from current location to specified place.
If you have sample app please give me a link or please give me some hint about it.
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要添加 MKPolyline使用 MKMapView 的
addOverlay:
函数添加到地图。然后,在 MKMapView 的委托中,您需要覆盖mapView:viewForOverlay:
并返回 MKPolylineViews 以及要绘制的线条的颜色和宽度等设置。You'll want add MKPolyline to the map using MKMapView's
addOverlay:
function. Then in your MKMapView's delegate you'll want to override themapView:viewForOverlay:
and return MKPolylineViews with the settings like color and width of the line to draw.查看 Apple CrumbPath。
Take a look at Apple CrumbPath.