TileLayer.CacheAsBitmaps Property
Gets or sets a flag indicating if the TileLayer rasterizes each tile to a bitmap, and uses that bitmap to draw the tile.
Syntax
public System.Boolean CacheAsBitmaps { get; set; }
Property Value
Default: false
True if tiles are cached as bitmaps; otherwise, False.
Remarks
If this flag is True, the TileLayer rasterizes each tile to a bitmap once when the tile is loaded, and then uses that bitmap repeatedly to draw the tile. This can greatly improve drawing performance and GPU/CPU load, especially for complex configurations with lots of vector data. If the flag is False (the default), all presentation objects will be rendered individually to the screen in each frame.
Using bitmap caching will incur some visual artifacts:
The bitmaps are generated at a fix scale, and will be stretched or shrunk to fit the actual size on screen. Unless the application uses fix scales that match the tile levels, texts and symbols will vary in size, up to a factor of 2. To avoid this stretching, the application should only use scales that are a power of 2 from the base scale 1:10000. For instance, setting View.NominalScale to 2500, 10000 or 10240000 will show the bitmaps at their correct size. Tip: To quickly zoom to such a nominal scale in Carmenta Explorer, use the zoom-in/zoom-out buttons (magnifying glasses with plus and minus).
Texts and symbols will be rotated if the view is rotated.
Texts and symbols may be clipped at tile boundaries. This can be avoided in many cases by setting appropriate pixel margins on the sub-layers, e.g. OrdinaryLayer.PixelMarginLeft. However, some cases are hard to solve completely, for instance if you wish to repeat a symbol along a line at a certain interval. To solve this, you may need to add a custom operator or ScriptOperator that replaces the line with point features with correct spacing.
Although this function can significantly improve the frame rate, it does not by itself improve tile load times, instead there is a (marginal) penalty for creating the bitmaps. However, the bitmaps may also be cached to disk. This may drastically reduce the load times if the tile bitmaps are found on disk. Use CachePath and CacheSize it addition to this property to enable disk caching.
The saved tiles on disk have to be removed if anything is changed in the configuration that affects visualization of those tiles. This also includes the case where TileSize is changed after tiles have already been cached to disk, as the sizes of the tiles on disk will be incompatible with the size of tiles in the TileLayer.
Bitmap caching cannot be used together with Automatic Label Placement or with feature selection.
Platforms
Windows, Linux, Android