Interface RasterColorMapStyleExperimental

interface RasterColorMapStyle {
    kind: "colormap";
    stops: readonly {
        color: readonly [number, number, number, undefined | number];
        label?: string;
        value: number;
    }[];
}

Properties

Properties

kind
stops: readonly {
    color: readonly [number, number, number, undefined | number];
    label?: string;
    value: number;
}[]