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