Yes, use geocoding service for that: http://code.google.com/intl/pt-BR/apis/maps/documentation/flash/services.html
The code is as simple as this: var geocoder:ClientGeocoder = new ClientGeocoder(); geocoder.addEventListener(GeocodingEvent.GEOCODING_SUCCESS, handleGeocodingSuccess); geocoder.addEventListener(GeocodingEvent.GEOCODING_FAILURE, handleGeocodingFailure); geocoder.geocode(address.text); In the handleGeocodingSuccess you will get the responses. Each result will contain longitude/latitude position. You may then use this position to center your map on the desired location. Hope it helps Carol On 5 set, 20:26, james_ser <[email protected]> wrote: > Hi, > > I'm working on a flash banner advertisement and the concept is to > allow the viewer to enter their postcode in australia into a textfield > of the flash banner and when clicked search, it will bring them to the > particular google map location which they entered. Is this possible to > do? Can the API key be used on multiple websites which the banners are > being placed? Thanks heaps for your help. > > Cheers, > James -- You received this message because you are subscribed to the Google Groups "Google Maps API For Flash" 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-for-flash?hl=en.
