Interface RendererStyleExperimental

Advanced multi-property style override for one renderer class. When present it replaces the single color shorthand and may carry any MapLibre paint/layout properties (this is how WebMap symbols round-trip through renderer objects without loss).

interface RendererStyle {
    layout?: Readonly<Record<string, unknown>>;
    paint?: Readonly<Record<string, unknown>>;
}

Properties

Properties

layout?: Readonly<Record<string, unknown>>
paint?: Readonly<Record<string, unknown>>