On Jan 2, 2:42 pm, Manasa <[email protected]> wrote: > I have these coordinates in my database.I am trying to show them as a > report which contains the corresponding addresses.I read in google api > reference that GClientGeocoder objects must not be used in a > loop.Instead we have to do geocoding through http.I wanted to pass > multiple values to the URL to get addresses of all the > coordinates.Guide me if i am completely wrong.
I wondered if that was the case. You have to do them one at a time, and you will be subject to the limitation on speed and number (I think that's 15000 per day, I can't find it in the docs). You can use the API's GClientGeocoder and the HTTP geocoder in loops, but they need very careful handling to ensure that the responses are matched to the right request and you don't exceed the speed limit. Andrew --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
