On Oct 10, 9:51 am, bob <[EMAIL PROTECTED]> wrote: > How do I get latitude and longtitude in my JavaScript code from google > based on submitted zipcode? > > I suppose I need the following: > <script src="http://maps.google.com/maps? > file=api&v=2&key=my_key&hl=en" type="text/javascript"></script>
you need the GClientGeocoder or the HTTP Geocoder. See the documentation: http://code.google.com/apis/maps/documentation/services.html#Geocoding -- Larry > > I am looking for something like > > var LatLng_array = new GLatLng(zipcode); > latitude = LatLng_array[0]; > longtitude = LatLng_array[1]; --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
