Look in the documentation for the geocoder service. However, I would recommend against this procedure for performance and practical reasons. Namely, the geocoder requires an additional request be sent to Google's servers. This will slow your application's startup. And also, there is a rate limit on the geocoder, so it could theoretically limit the traffic on your site.
Jeremy R. Geerdes Generally Cool Guy Des Moines, IA For more information or a project quote: [email protected] If you're in the Des Moines, IA, area, check out Debra Heights Wesleyan Church! On Jan 2, 2012, at 6:03 AM, eduardo12fox wrote: > Hello, > > I would like to open my map using a physical address and not the > longitude and latidude. How can I change this in the script? > > function initialize() { > var myOptions = { > zoom: 13, > center: new google.maps.LatLng(-33.879,151.235), > mapTypeId: google.maps.MapTypeId.ROADMAP > } > > > I want to change: center: new google.maps.LatLng(-33.879,151.235), > > for > > 'av oitis 260 retiro volta redonda', 'rua pinto ribeiro 1 centro barra > mansa' > > -- > 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. > -- 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.
