import com.google.maps.services.ClientGeocoder;
import com.google.maps.services.ClientGeocoderOptions;
import com.google.maps.services.GeocodingEvent;

function getCityName(point:LatLng){

 var myLocation = new ClientGeocoder();
 myLocation.reverseGeocode(point);
 myLocation.addEventListener(GeocodingEvent.GEOCODING_SUCCESS,
getLatLngSuccess);
 myLocation.addEventListener(GeocodingEvent.GEOCODING_FAILURE,
getLatLngFailed);
}
This should return the city...
On Wed, Apr 22, 2009 at 8:51 AM, cyrt <[email protected]> wrote:

>
> hi!
>
> I'd like to implement a function as described in the subject.
>
> Any idea, how this can be achieved?
>
> thanks
> -cyrt
> >
>

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to