Hi Steve,
Because tiff have many types, it looks your data is not supported well now, we have a workaround but it only render the data as black-white color.
winformsMap1.MapUnit = GeographyUnit.Meter;
LayerOverlay layerOverlay = new LayerOverlay();
GeoTiffRasterLayer tiffLayer = new GeoTiffRasterLayer(@"GDTest.tif");
tiffLayer.Open();
winformsMap1.CurrentExtent = tiffLayer.GetBoundingBox();
GdalRasterLayer layer = new GdalRasterLayer(@"GDTest.tif");
layerOverlay.Layers.Add(layer);
winformsMap1.Overlays.Add(layerOverlay);
winformsMap1.Refresh();
Our developer is focus on the new product this month, I think we can research it and see whether this type can be supported after that.
Regards,
Ethan