I have an application where I gather a bunch of geopoints and show them on a map, based off where the user goes. I want to be able to give turn by turn directions for all of those geopoints. Basically I want turn by turn directions of the path they took. The problem is everything I see, and I have looked a lot of place, only shows how to do this for 2 points start and destination.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
If you want the direction between to geopoints you have to calculate it. First you need to get the difference of the north/south direction and the the difference of the eas/west direction. Then you can calculate the angle between the two geopoints by using the atan2.
This is how you get the direction between 2 points (in degrees). If you want to navigate the user, you have to write a whole navigation software, which is far more complicated. |
|||||
|