Interface ILayerData

Source
Expand description

Interface for layer border information.

interface ILayerData {
    border?: ILayerBorder[];
    borderComponents?: ILayerBorderComponent[];
    components: ILayerComponent[];
    geometry: ILayerGeometry[];
    highlighted?: number[];
    raster?: IRasterData[];
    thematic?: ILayerThematic[];
}

Properties§

Source§

border?: ILayerBorder[]

Array of borders for the layer.

Source§

borderComponents?: ILayerBorderComponent[]

Array of border components for the layer.

Source§

components: ILayerComponent[]

Array of components for the layer.

Source§

geometry: ILayerGeometry[]

Array of geometries for the layer.

Source§

highlighted?: number[]

Indices of highlighted components in the layer.

Source§

raster?: IRasterData[]

Raster data for the layer.

Source§

thematic?: ILayerThematic[]

Thematic data for the layer.