(TLayer.AddImgMarker Method)
Adds a image marker on the layer. The marker would be located at the given geographical position (arguments one and two) .The image displayed by the marker is given by the argument three (_url). The last argument specifies the X and Y offsets for the image and the border color and width for the image marker.
public AddImgMarker(latitude, longitude,_url,strStyle):Void
<div id="mapContainer"  style="width: 640px; height: 400px;"></div>
<script type="text/javascript">
    var map0 = new TMap(mapContainer, 25.7590256665386, -80.3738769902151, 15, mapLoaded, 1, true, "", "hybrid");
   
    function mapLoaded() {
        var layer0=map0.AddLayer();
        var marker1=layer0.AddImgMarker(25.759025666538, -80.3738769902151,
                                            "http://maps.cs.fiu.edu/API_doc_stage/Terrafly_API_Prod/images/star.gif",
                                            "X_OFFSET=0;Y_OFFSET=0;BORDER_COLOR=0xFFFFFF;BORDER_WIDTH=2");
    }
</script>