everyone... I have something to ask about using a MapView in Android with Google Maps API..

I've read about how to make a Geopoint or more and find a distance between 2 points..

One thing that still makes me confuse is about calculating a distance between 2 points. I've tried and find the result but it's applied if the condition is when I want to make a straight line between those points. But, when I crosscheck with maps.google.com, the result (distance) is different with the same latitude and longitude of those points. And I realize that its a kind of a Driving Direction..

example of Google Map Web

If you see the picture, it's not a straight line so of course the distance is different. So how could I calculate this distance in Android in this case? And please show me the code to make it...

link|improve this question

40% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Yes it will return you the straight line distance between two point.. you can use Google direction API for this ...Here is the link for this. http://code.google.com/apis/maps/documentation/directions/

link|improve this answer
how can I get the distance with this API?? Please show me... – Rommy Saiko Jun 13 '11 at 10:20
see here is the distance tag which you have parsed to show the distance ...."distance": { "value": 2137146, "text": "1,328 mi" }, Here value is the distance in meter. – Sujit Jun 13 '11 at 11:06
@Sujit: I mean how can I use that value in Java code?? I'v read the link but it looks like the output is in JSON or XML format.. So how I do that since I still don't know a lot about JSON and XML... – Rommy Saiko Jun 14 '11 at 6:33
you have to use JSON parser or XML parser to retrieve the value . – Sujit Jun 14 '11 at 6:47
if you don't mind, would you show the simple example of using XML parser? – Rommy Saiko Jun 14 '11 at 10:02
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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