Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Google map v3 direction api in my project.

I give cities name as a start point and end point for getting Distance and Time Taken for that distance.

I have another requirement to get longitude and latitude of start point which is city name.

Can I get it from direction api which is used by me to get distance and time taken in result of direction api?

If we can get latitude and longitude from result of direction api, then please help me by giving proper answer.

thanks in advance.

share|improve this question

1 Answer

From a quick look at the responses section of the directions API documentation , it looks like you can get the start_location -> lat and start_location -> lng the same way you are already getting the distance and time.

I guess that would be:

routes.legs[0].start_location.lat
routes.legs[0].start_location.lng
share|improve this answer
Thanks for answer!!! but I am not getting exact answer... – sikender Oct 15 '11 at 9:22
Output from your code is :- function () { return this[a]; } – sikender Oct 15 '11 at 9:23
How about you put the code you're using to get the distance and time in your question? Then it would be easier to answer correctly. – HenningJ Oct 15 '11 at 9:47
var km = route.legs[0].distance.value; ...... This is how I Get Distance value. – sikender Oct 15 '11 at 10:17
alert(route.legs[0].start_location.lat.value); – sikender Oct 15 '11 at 10:19
show 7 more comments

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.