Reputation: 21
how to get multiple distance route results for single destination from google api call?
starting point and ending point i have to find the distance between them. i have to display the shortest and middle and longest distance for only one destination(ending point). it has any API provided to me.
Please help me
Advance Thanks.
Upvotes: 1
Views: 352
Reputation: 1024
You have to change the current location latitude,longitude and destination latitude,longitude in below url. You will get the result.
http://maps.googleapis.com/maps/api/directions/json?origin=17.4444,78.4666&destination=17.4393,78.4056&units=imperial&alternatives=true&sensor=false
Upvotes: 1