Is it possible to change the TileType of an overlay for certain zooms?
We have a case where thousands of items corresponding to elements of the power grid are displayed on the map. During some tests we noticed that in larger (closer) zooms the map loads faster when configured with SingleTile, however, it becomes very slow in smaller zooms.
We tried to change TileType, but we get the following exception:
System.ObjectDisposedException:
We try the following way:
layerOverlay.IsVisible = false;
layerOverlay.TileType = TileType.SingleTile;
layerOverlay.IsVisible = true;
It is possible? Or is there another way to do it?