Hello,
I am still evaluating your software.
I am trying to add WMSOverlays. I can add a WMSOverlay from a local Geoserver that I am running but when I attempt to connect to a NASA wms page, the site crashes. I can open the NASA wms link fine in uDig (desktop Viewer)
Here is my code for both the Geoserver WMSOverlay and my attempt at a NASA WMSOverlay
Map1.MapUnit = GeographyUnit.DecimalDegree;
//NASA Blue Marble
WMS WmsOverlay wmsBlueMarble = new WmsOverlay("BMNG", new Uri("wms.jpl.nasa.gov/wms.cgi"));
wmsBlueMarble.Name = "BMNG";
wmsBlueMarble.Parameters.Add("LAYERS", "BMNG");
Map1.Overlays.Add("BMNG", wmsBlueMarble);
// coming from local GeoServer WmsOverlay
wmsOverlay = new WmsOverlay("WMSOverlay",
new Uri("ztserver:8080/geoserver/wms"));
wmsOverlay.Name = "Use Wms Service";
wmsOverlay.Parameters.Add("LAYERS", "tgr06037cty00");
Map1.Overlays.Add("WMSOverlay", wmsOverlay);
Thanks, Leon