Hello,

I have an issue with the google autocomplete feature. I initialise it like 
: 

var input = document.getElementById("center_selector");
var options = { ... 
var ac = new google.maps.places.Autocomplete(input, options);
google.maps.event.addListener(ac, "place_changed", function() { ...


All work fine with the basic function. When the place_changed is fired, the 
function is done.

Now my issue : I want to allow also users to just enter an address without 
selecting the autocompletion proposals. 

Sample, you type just WOOD into the inputbox, and the autocomplete 
proposals are Woodbridge, woodcity, ..., but the user do NOT select any 
proposal and click the form submit button, and then the user typed address 
is geocoded before.

In my case until now I used this : 
jQuery(document).ready(function(){
jQuery("#center_selector").blur(function(){
_manGeocode();
});
});

and the _manGeocode() function geocode the users typed value. 

But...... since some days the blur method do no more work.

And of course I cannot access to the form JS functions because my 
application become a part of a third part app (it's a plugin).

In other words, I need a method like : 

google.maps.event.addListener(ac, "input_without_selectio_changed", 
function() { ...


It's a common issue with a solution ?

Cédric

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-maps-js-api-v3.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to