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.

Is there any way to find the direction between two locations in Android?

share|improve this question
First have a look at this <a href="anddev.org/… shows how to use the Android built in access to the Google DrivingDirections API </a>. Also, Check these SO questions for more information, which are regarding the Google Maps - Direction: 1. stackoverflow.com/questions/2662531/… 2. stackoverflow.com/questions/2853017/android-google-directions Hope this helps, Enjoy!! – Paresh Mayani Aug 2 '10 at 10:21
Thanks Paresh Mayani. – Krishnan Aug 5 '10 at 8:46

2 Answers

You could use the Google Directions API to get the directions if you wanted to display them yourself inside your own app.

Alternatively, if what you want to do is launch Google Maps for Android to show directions, you do this with an Intent. This question has details on how to do this.

share|improve this answer
Thanks Dave web. – Krishnan Aug 5 '10 at 8:46

On android.location.Location class there is a method called getBearing() ,which returns the degree of change from the last location.This can be used for navigation icons and all for showing the direction of movement.. Hope this will be helpful.. :D

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.