My team is working on an application that ingests multiple RPF datasets of different granularity/detail. When all these datasets are loaded all at once, the app slows way down when zooming in or out. Any suggestions on how to alleviate this behavior?
My RPF ingest follows the pattern:
foreach file in dataset
{
Raster newRasterFile = new file;
rasterLayer = new RasterLayer(newRasterFile);
GeoMap?.OperationalLayers.Add(rasterLayer);
await rasterLayer.LoadAsync();
}