Show path from Current Location Tutorial.
APPLE integrate new feature to show route. Requirement -> OS version should be IOS6 or later. Show route from current location to YourCoordinate in iOS6 -( void ) showMapRouteFromCurrentLocation { CLLocationCoordinate2D currentUserCoordinate = YourCoordinate ; //currentUserCoordinate.latitude= +53.509980; //currentUserCoordinate.longitude = -0.133700; MKPlacemark * place = [[ MKPlacemark alloc ] initWithCoordinate : currentUserCoordinate addressDictionary : nil ]; MKMapItem * mapItem = [[ MKMapItem alloc ] initWithPlacemark : place ]; NSDictionary * routeOption = [[ NSDictionary alloc ] initWithObjectsAndKeys : MKLaunchOptionsDirectionsModeDriving , MKLaunchOptionsDirectionsModeKey , nil ]; [ mapItem openInMapsWithLaunchOptions : routeOption ]; } Follow this link link http://stackoverflow.com/questions/13742305/to-show-the-route-between-mutliple-points-in-i