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§

§border?: ILayerBorder[]

Array of borders for the layer.

§borderComponents?: ILayerBorderComponent[]

Array of border components for the layer.

§components: ILayerComponent[]

Array of components for the layer.

§geometry: ILayerGeometry[]

Array of geometries for the layer.

§highlighted?: number[]

Indices of highlighted components in the layer.

§raster?: IRasterData[]

Raster data for the layer.

§thematic?: ILayerThematic[]

Thematic data for the layer.