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

    Minimal structural view of a GeoJSON layer entry (from GeoJSONCore.getLayerById()) as consumed by the labels module. Narrowed to the fields actually read: visibility state, current style and loaded features.

    interface LabelLayerData {
        currentStyle?: LayerCurrentStyle | null;
        _visibility?: { current?: boolean; [key: string]: unknown };
        features?: unknown[];
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    currentStyle?: LayerCurrentStyle | null
    _visibility?: { current?: boolean; [key: string]: unknown }
    features?: unknown[]