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§

§colorMapInterpolator: ColorMapInterpolator

Interpolator for color mapping.

§colorMapLabels: string[]
§isColorMap?: boolean

Indicates if the layer is a color map.

§isPick?: boolean

Indicates if the layer is for picking

§isSkip?: boolean

Indicates if the layer should be skipped in rendering.

§opacity: number

Opacity of the layer.

§pickedComps?: number[]

Components that are picked, if any.