Does anyone know how I would retrieve the latitude and longitude from a given address in google maps?
I'm using something like this, but I need to split it up to have the latitude
and longitude in separate labels:
private function createMarker(point:LatLng):void {
marker = new Marker(point, new MarkerOptions({draggable: true}));
var markerContent:String = marker.getLatLng().toString();
}
<mx:Label id="lat"/>
<mx:Label id="lng"/>

