GeoLeaf Core API - v3.0.0
    Preparing search index...

    Structural view of a layer configuration object accepted by the Legend facade. Kept permissive (all-optional + index signature) so callers can forward any profile-driven layer.config bag without narrowing.

    interface LegendLayerConfig {
        label?: string;
        geometryType?: string;
        geometry?: string;
        showIconsOnMap?: boolean;
        styles?: {
            directory?: string;
            available?: { id: string; file?: string }[];
            default?: string;
        };
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    label?: string
    geometryType?: string
    geometry?: string
    showIconsOnMap?: boolean
    styles?: {
        directory?: string;
        available?: { id: string; file?: string }[];
        default?: string;
    }