how to draw route in MapView

604 Views Asked by At

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...

2

There are 2 best solutions below

0
On

You'll want add MKPolyline to the map using MKMapView's addOverlay: function. Then in your MKMapView's delegate you'll want to override the mapView:viewForOverlay: and return MKPolylineViews with the settings like color and width of the line to draw.

0
On

Take a look at Apple CrumbPath.