Interface ClassBreakEntryExperimental

One graduated class.

interface ClassBreakEntry {
    color?: string;
    label?: string;
    max?: number;
    min?: number;
    style?: RendererStyle;
}

Properties

color?: string

Swatch color shorthand; positional colors apply when omitted.

label?: string
max?: number
min?: number

Inclusive lower bound; used as the MapLibre step threshold (min ?? max).

Advanced multi-property override; replaces the color shorthand.