728x90

private function selected_areaname():void{
var geocoder:ClientGeocoder=new ClientGeocoder();
geocoder.addEventListener(GeocodingEvent.GEOCODING_SUCCESS,
function(event:GeocodingEvent):void{
var placemarks:Array=event.response.placemarks;

if(placemarks.length>0){
map.setCenter(placemarks[0].point);
map.openInfoWindow(placemarks[0].point,new InfoWindowOptions({content:placemarks[0].address}));

}
});
geocoder.addEventListener(GeocodingEvent.GEOCODING_FAILURE,function(event:GeocodingEvent):void{
Alert.show("Geocoding failed");
});
geocoder.reverseGeocode(curr_latlng);//현재 위,경도로 geocoding 한다. 성공 시 openinfowindow 한다.
}

728x90

'Flex' 카테고리의 다른 글

SWC DECOMPILE DECODE  (0) 2012.07.29
FileReference  (0) 2012.07.29
이미지가 보여지지 않을 때  (0) 2012.07.29
flexlib  (0) 2012.07.29
Flex String 줄바꿈  (0) 2012.07.29

+ Recent posts