LuciadCPillar 2024.0.01
rasters

Support for rendering of raster data. More...

Classes

class  luciad::RasterLayer
 A layer for raster models. More...
 

Enumerations

enum class  luciad::RasterLayerType { luciad::RasterLayerType::Background , luciad::RasterLayerType::Interactive }
 Provides hints about the type of a given RasterLayer. More...
 

Detailed Description

Support for rendering of raster data.

The main entry point is the RasterLayer class. Among other things, this tutorial demonstrates how raster data can be added to the Map.

Enumeration Type Documentation

◆ RasterLayerType

enum class luciad::RasterLayerType
strong

Provides hints about the type of a given RasterLayer.

luciad/layers/rasters/RasterLayer.h

These hints may be used to determine default layer ordering or to perform certain optimizations.

Since
2024.0
Enumerator
Background 

Indicates that the layer contains static data which is rarely or never modified.

Changes to the layer's visibility, its position in the view's layer hierarchy or its styling may incur a non-negligible performance cost.

Interactive 

Indicates that the layer contains data which is largely static but which may be manipulated by the application user.

Examples include layers that are switched on and off frequently or layers whose styling changes often.