1

With the Google Maps IOS SDK, is it possible to show the route from one location to another location. I've googled but didn't find any good results. Any suggestions?

Noor
  • 19,638
  • 38
  • 136
  • 254
  • Did the tutorial I posted below work for you? – AdamG Oct 24 '13 at 18:47
  • My answer could be helpful, located at http://stackoverflow.com/questions/16811965/how-to-draw-a-path-one-place-to-another-place-in-google-map-sdk-ios/20171859#20171859. – Amozoss Nov 24 '13 at 07:33

1 Answers1

7

Yes.

This video is a tutorial that shows how to do this and is linked to a github that has source code. You basically have to write wrappers to do server requests to get a polyline between two locations and then you add it to the map.

Also, look here for the full documentation and basic code snippets.

Good luck!

AdamG
  • 3,718
  • 2
  • 18
  • 28