This msg is to sum up this discussion for anyone wanting the same...

This was the line of code I was missing/wanting:     marker.getLatLng
().toString();

heres an example of the line of code in use:

//--------------
 marker.addEventListener(MapMouseEvent.DRAG_END, function
(event:MapMouseEvent):void {
          var markerContent:String = marker.getLatLng().toString();
          marker.openInfoWindow(new InfoWindowOptions({contentHTML:
markerContent}));
//--------------

everytime the marker is dragged/moved the varible markerContent gets
the new Lat & Longitude coordinates.
Geocoding isnt required unless your script requires extra
functionality.
--~--~---------~--~----~------------~-------~--~----~
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