do you know a sdk / API which I can integrate a complete turn by turn navigation in my app? is there such a thing?
Asked
Active
Viewed 1,034 times
2 Answers
1
You could try with MKDirectionsRequest
or similar classes from Apple's MapKit

gabuh
- 1,166
- 8
- 15
-
1With `MKDirectionsRequest` `calculateDirectionsWithCompletionHandler` method you get all the turn by turn idications from an origin to a destination. You can have live indications doing different calls to `calculateDirectionsWithCompletionHandler` with some time lapse... If you keep calling the method every XX seconds you will have real time indications. – gabuh Jun 04 '14 at 12:02