3

do you know a sdk / API which I can integrate a complete turn by turn navigation in my app? is there such a thing?

Meins
  • 145
  • 1
  • 12
  • You can doit by google maps sdk – mvadim Jun 04 '14 at 11:29
  • do you mean https://developers.google.com/maps/documentation/ios/urlscheme#add_navigation_to_your_app that means you can only open google maps app with a route – Meins Jun 04 '14 at 11:30

2 Answers2

1

You could try with MKDirectionsRequest or similar classes from Apple's MapKit

gabuh
  • 1,166
  • 8
  • 15
  • 1
    With `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
1

Yes - use the Scout SDK (OpenStreetMap based solution) - you can embed TBT directly in your app and they have a free tier to get you started.

Ando
  • 11,199
  • 2
  • 30
  • 46