> Basically, I'm just using the javascript geocoder then pushing that > value into a form field where we're posting it to the database. Note > that you have to use setTimeout to give the Google server time to > respond:
Err, no ... the use of setTimeout indicates that you're trying to using data from an asynchronous service before its ready. You've nailed the problem, but not the solution - setTimeout is an unreliable kludge for that. http://econym.org.uk/gmap/async.htm You need to fill in the form value in the showAdress callback function --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
