Get your own customer support community
 

Marker Masking?

I'm using the AS3/Flex2 codebase and am having an issue with masking of the markers. Using putMarker() everything seems to work correctly, but as I drag the map around, the markers show outside the bounding box. They’er still in the correct place, but the map is properly hidden but the markers aren’t. I haven't seen this posted as an issue for anyone else, so I can't figure out what I'm doing wrong. Here's the code I'm using:

[Embed(source="../assets/interface/mapping/pointer.png")]
private var MarkerImage: Class;

...

var markerImage:Bitmap = new MarkerImage() as Bitmap;
var imgObj:MovieClip = new MovieClip()

imgObj.addChild(markerImage)
imgObj.name = thisLoc[2]
contactMap.map.putMarker(thisLoc[0], thisLocation, imgObj)

Any help/advice would be greatly appreciated!
Inappropriate?
1 person has this question

User_default_medium