When trying to add a WMS image as my backgroundoverlay, as was the case with the previous version of Map Suite, none of my shapefiles appear to draw over the WMS image.
'This is how to do the WMS I think but it is bugged in this version.
Dim wms As New WmsOverlay("WMS Overlay")
wms.Parameters.Add("layers", "massgis:GISDATA.IMG_COQ2005")
wms.Parameters.Add("SRS", "EPSG:26986")
wms.Parameters.Add("FORMAT", "image/gif")
wms.ServerUris.Add(New Uri("giswebservices.massgis.state.ma.us/geoserver/wms"))
wms.TileType = TileType.MultipleTile
wms.TileHeight = 256
wms.TileWidth = 256
wms.IsBaseOverlay = True
GeoMap.BackgroundOverlay = wms
GeoMap.BackgroundOverlay.IsVisible = True
Edit: Also, it seems like the loading bar that indicating whether or not features have finished drawing does not take place with WMS layers. Shouldn't it?