0

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 Answers2

0

Take a look at Apple CrumbPath.

Vinay W
  • 9,912
  • 8
  • 41
  • 47
0

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.

Evan
  • 6,151
  • 1
  • 26
  • 43