Hi mdmrtl,
I've got a couple of potentials depending on what you need to do:
[CODE]
var m:Marker = new Marker(new LatLng(latArray[markerpoint],
lonArray[markerpoint]), new MarkerOptions({icon:new hotspotBox(), hasShadow:
false}));
map.addOverlay(m);
markersArray[0] = m;
//I tried this code below and some variations on it but no luck
markersArray[0].icon.datetext.text = "test text";
[CODE]
var myCustomMarker:hotspotBox = new hotSpotBox();
myCustomMarker.datetext.text = "test text";
var m:Marker = new Marker(new LatLng(latArray[markerpoint],
lonArray[markerpoint]), new MarkerOptions({icon:new hotspotBox(), hasShadow:
false}));
map.addOverlay(m);
markersArray[0] = m;
Hope this helps.
Shaun
--
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.