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

    A layer entry in a profile: an id plus how to obtain its configuration.

    ⚠️ Two mutually exclusive routes. configFile is fetched over HTTP; inlineConfig is already-expanded configuration — produced by a layerTemplate — and skips the fetch entirely. A ref carrying both takes the inline path.

    interface LayerRef {
        id: string;
        configFile?: string;
        layerManagerId?: string;
        inlineConfig?: Record<string, unknown>;
    }
    Index

    Properties

    id: string
    configFile?: string
    layerManagerId?: string
    inlineConfig?: Record<string, unknown>

    Inline config generated from a layerTemplate expansion — skips HTTP fetch.