5

I need to know, is there any apple direction api by which we can get direction detail between two points(coordinates) same as we can do it via google api.

I need to draw route between two points within app. i do not want to open apple map by using new IOS SDK 6 MKMapItem class.

Thanks

Hindu
  • 2,894
  • 23
  • 41
  • http://stackoverflow.com/questions/3609344/alternative-map-apis-like-google-maps here is the different list of map api – Rushabh Mar 05 '13 at 07:33

2 Answers2

0

Nope, except you can send the user to the Maps app for directions. You can do this by creating an MKDirectionRequest object.

If you want the user to stay in your app, you need to do the routing yourself, or use a different API.

Aaron Brager
  • 65,323
  • 19
  • 161
  • 287
0

MKDirections
Apple class ref
Tutorial

mkb2000
  • 117
  • 1
  • 1
  • 8