On Feb 17, 10:48 am, "[email protected]" <[email protected]> wrote: > > But one question....is there any other approach possible? Without > storing the info in database is it possible?
Well, you *could* get each client to geocode the addresses each time the page is accessed, but that's hugely inefficient, both for the client and for use of Google's resources. It's definitely NOT recommended -- in fact it's actively discouraged. You really should geocode the addresses and store the locations in your database; that way geocoding only happens once which improves the user experience and provides some protection against geocoder data changes which can move addresses that were previously accurately located. Server-side geocoding via HTTP is possible: http://code.google.com/apis/maps/documentation/geocoding/index.html 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 -~----------~----~----~----~------~----~------~--~---
