Using Google Maps API how to determine the driving distance between two locations ? Platform -Java
|
You will need to use the Google Directions Web Service. You can make an HTTP request, specifying your two locations as parameters, and get back JSON (or XML) describing the directions between the two points. N.B. The Google Maps terms of service explicitly states that using the Google Maps Web Services without putting the results on a Google Map is prohibited. |
|||||||||||||||||
|
|
I'm new in Java and I had the same issue. That's why I've decided to make a Java library to provide theses information and more like route. Here's the link. Tell me what do you think about it and if it was useful for your case. |
||||
|
|
|
Use the Directions API: http://code.google.com/apis/maps/documentation/directions/ The default travel mode is for driving. Please read the terms of service: http://code.google.com/apis/maps/terms.html Particularly section 10.12 - which refers to using the results from this API. In short, you must display it in conjunction with a Google map. |
|||
|
|
