interface ColorLayerEvents {
    blendingMode-property-changed: {
        blendingMode: BlendingMode;
    };
    brightness-property-changed: {
        brightness: number;
    };
    contrast-property-changed: {
        contrast: number;
    };
    elevationRange-property-changed: {
        range: null | ElevationRange;
    };
    opacity-property-changed: {
        opacity: number;
    };
    saturation-property-changed: {
        saturation: number;
    };
    visible-property-changed: {
        visible: boolean;
    };
}

Hierarchy (view full)

Properties

blendingMode-property-changed: {
    blendingMode: BlendingMode;
}

When the layer blendingMode property changes

brightness-property-changed: {
    brightness: number;
}

When the layer brightness changes

contrast-property-changed: {
    contrast: number;
}

When the layer contrast changes

elevationRange-property-changed: {
    range: null | ElevationRange;
}

When the layer elevationRange property changes

opacity-property-changed: {
    opacity: number;
}

When the layer opacity changes

saturation-property-changed: {
    saturation: number;
}

When the layer saturation changes

visible-property-changed: {
    visible: boolean;
}

Fires when layer visibility changes.