Hi
I am new to your product and just download the trail version
due to our map is not to scale so i am trying to mark place by
screen coordinate, but it seems dose not work
here is my code:
Map1.MapBackground.BackgroundBrush = new GeoSolidBrush(GeoColor.FromHtml("#B3C6D4"));
Map1.CurrentExtent= new RectangleShape(-140, 60, 140, -60);
Map1.MapUnit = GeographyUnit.DecimalDegree;
GdiPlusRasterLayer rasterLayer = new GdiPlusRasterLayer(MapPath("london.png"), new RectangleShape(-180, 200, 250, -180));
rasterLayer.UpperThreshold = double.MaxValue;
rasterLayer.LowerThreshold = 0;
Map1.StaticOverlay.Layers.Add(rasterLayer);
if (!Map1.MarkerOverlay.Features.Contains("Victoria Station"))
{
Map1.MarkerOverlay.Features.Add("Victoria Station", new Feature(10, 10));
}
looking for the reply
Thanks a lot
Phil