Expand description
interface ILayerData {
border?: ILayerBorder[];
borderComponents?: ILayerBorderComponent[];
components: ILayerComponent[];
geometry: ILayerGeometry[];
highlighted?: number[];
raster?: IRasterData[];
thematic?: ILayerThematic[];
}Properties§
Source§border?: ILayerBorder[]
border?: ILayerBorder[]
Array of borders for the layer.
Source§border Components?: ILayerBorderComponent[]
border Components?: ILayerBorderComponent[]
Array of border components for the layer.
Source§components: ILayerComponent[]
components: ILayerComponent[]
Array of components for the layer.
Source§geometry: ILayerGeometry[]
geometry: ILayerGeometry[]
Array of geometries for the layer.
Source§raster?: IRasterData[]
raster?: IRasterData[]
Raster data for the layer.
Source§thematic?: ILayerThematic[]
thematic?: ILayerThematic[]
Thematic data for the layer.
Interface for layer border information.