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.

I'm trying to find a way to use Google Map Directions to show the directions to point A and point B without launching it as an Intent which opens the map on either Google Navigator or on your phone web browser.

Is there a way to have Google Directions on a MapView alone?

share|improve this question
you can use this stackoverflow.com/a/11745316/1230123 – Hesham Saeed Aug 23 '12 at 22:44

1 Answer

Yes, there is a way. However, please keep in mind that if you wish to show directions on a Map View you will have to do do a lot of drawing of lines using a canvas, not to forget that you will still be making a call to the Google Directions API to get a JSON response which you will then have to decode.

For decoding that JSON response please refer to this excellent answer to another question: http://stackoverflow.com/a/6708458/1512836.

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.