Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 MKMapView 中绘制路线。我想绘制从当前位置到指定地点的路线。如果您有示例应用程序,请给我一个链接或给我一些提示。
谢谢...
您需要使用 MKMapView 的函数将MKPolyline添加到地图中。addOverlay:然后在您的 MKMapView 的委托中,您将需要覆盖mapView:viewForOverlay:并返回 MKPolylineViews,其中包含要绘制的线条的颜色和宽度等设置。
addOverlay:
mapView:viewForOverlay:
看看Apple CrumbPath。