Interface ILayerRenderInfo

Source
Expand description

Interface for layer render information.

interface ILayerRenderInfo {
    colorMapInterpolator: ColorMapInterpolator;
    colorMapLabels: string[];
    isColorMap?: boolean;
    isPick?: boolean;
    isSkip?: boolean;
    opacity: number;
    pickedComps?: number[];
}

Properties§

Source§

colorMapInterpolator: ColorMapInterpolator

Interpolator for color mapping.

Source§

colorMapLabels: string[]

Source§

isColorMap?: boolean

Indicates if the layer is a color map.

Source§

isPick?: boolean

Indicates if the layer is for picking

Source§

isSkip?: boolean

Indicates if the layer should be skipped in rendering.

Source§

opacity: number

Opacity of the layer.

Source§

pickedComps?: number[]

Components that are picked, if any.