Hello,I have been trying to place a single marker onto a point of which I have the google, latitude/longitude of. I do so with the following code,var myGraphicMarker:Graphic = new Graphic(new MapPoint(-120.0, 54.3,new SpatialReference(4326)),
new SimpleMarkerSymbol(SimpleMarkerSymbol.STYLE_CIRCLE, 44, 0x009933));
myGraphicMarker.toolTip = "Marker added with ActionScript";
myGraphicsLayer.add(myGraphicMarker);
The SpatialReference(4326) is Lat/Long. However I have 3 problems I cannot seem to overcome.1. The location of the marker is incorrect. It is appearing to stay on WebMercator. I have looked over some other samples such as WebMercatorUtil where it converts the co-ords. How can I use this for the follow:Input Lat/Long - > WebMercatorUtil - > X, Y -> MapPoint(X,Y)2. Any Examples of how I can make a custom marker using actionscript and Popup Window using actionscript on click of marker?Cheers!Samer