I am using the eval version of your product under windows 7. when I load a Geotiff and zoom inot it the image appears as banded lines. the more you zoom in the more banded it is.
What would be the cause of ths?
The method I use to load it is here. private void addGeotiffs_Click(object sender, RoutedEventArgs e)
{
GeoTiffRasterLayer geoTiffRasterLayer = new GeoTiffRasterLayer(@"..\..\data\A00117.tif");
LayerOverlay geotiffOverlay = new LayerOverlay();
geotiffOverlay.Layers.Add(geoTiffRasterLayer);
wpfMap.Overlays.Add(geotiffOverlay);
wpfMap.Refresh();
}