tags:

views:

335

answers:

3
+2  Q: 

MKMapView Road Map

How to Get Route from user current Location to Destination location in MkMapView?

A: 

I don't think that's something allowed in Mapkit. I believe it's part of the restrictions to prevent Mapkit from being used for a turn by turn application.

criscokid
I heard this too, thats why all the gps apps do n ot use map view they have their own maps
Daniel
+1  A: 

You need to handle that yourself. Get the gps data somewhere for the route and draw the lines yourself.

CiNN
A: 

You can use MapKit for showing maps, but when it comes to routing you'll have to launch out to the Maps app. In the URL launching Maps you can pass the destination's lat/long coordinates and have it place pin. The user can then find their way there from their current location.

Ramin