MARKER CLIP
Dear All,
How to add marker clip in the map for the given lat/long. Can any send me sample coding.
regards
K.JAYAKMAR
How to add marker clip in the map for the given lat/long. Can any send me sample coding.
regards
K.JAYAKMAR
1
person has this question
I have this question, too!
Tell me when someone answers.
The more people who ask this question, the more it gets noticed.
The more people who ask this question, the more it gets noticed.
Create a customer community for your own organization
Plans starting at $19/month
-
Inappropriate?Hi there!
How about http://blog.modestmaps.com/2009/02/he...
Also, take a look at ModestMapsSample in the source code, it has examples of markers. The basic form is:
var marker:Sprite = new Sprite(); // any DisplayObject is OK
marker.graphics.beginFill(0xff0000);
marker.graphics.drawCircle(0,0,10);
marker.graphics.endFill();
var location:Location = new Location(37.645511, -120.988701);
map.putMarker(location, marker);
Loading Profile...



EMPLOYEE