I have a search field that uses the google places api to autosuggest locations like so:

<input type="text" id="addressInput" name="addressInput" class="span3 search-query" placeholder="Enter location..">

<script>
var autocomplete = new google.maps.places.Autocomplete($("#addressInput")[0], {});

google.maps.event.addListener(autocomplete, 'place_changed', function() {
var place = autocomplete.getPlace();
console.log(place.address_components);
});
</script>

As the user types an addrress or city, it suggests just fine. but once a user clicks on a result, how do I retrieve the lat and long of that selected option from the user?

The google examples seem to be find them based on dropping a marker. I'm not displaying anything on a map at all.

link|improve this question

25% accept rate
feedback

1 Answer

Please have a look at the following:

http://code.google.com/intl/pl-PL/apis/maps/documentation/javascript/geocoding.html#ReverseGeocoding

It contains loads of information - you will find anything you need!

link|improve this answer
i've seen that, i just don't know how you get it geocode what ever address the user ends up inputting or selecting from the autocomplete results – thindery Feb 23 at 21:17
Have you looked at the "geometry" object? i.e. console.log(place.geometry); According to the documentation, the location part of it contains the Long and Lat. – lkaradashkov Feb 23 at 21:33
feedback

Your Answer

 
or
required, but never shown

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