> But I don't understand how to call the maps.google.com site > and use the return code while inside of a web page. is that an AJAX > thing?
You wouldn't normally call that from a webpage ; you would use the methods provided in the javascript Maps API to access the geocoder http://code.google.com/apis/maps/documentation/javascript/services.html#Geocoding Using the service from javascript is effectively AJAX, yes. Having loaded the API to do that, you might as well show the map on the same page and not redirect off to new pages (unless you want to). This example is based on v2 API but might give you some ideas http://econym.org.uk/gmap/example_didyoumean1.htm -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
