> > I have been using getLocations() to return one point if geographical > > coordinates were entered, but after Google introduced reverse > > geocoding the function returns multiple addresses, most of them being > > garbage.
I think I see now , you were using the geocoder as a text parser. Send it text "70.54, -4.32" and get a location back of 70.54, -4.32 in an API-friendly format. I'm afraid that wasn't what the geocoder was really intended for, and things have moved on now. You could look into other geocoding services (though I think you'll hit similar issues) - or sort out a text parser, which should improve your page's speed and reliability anyway by reducing the net traffic. cheers, Ross K --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
