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

    Explicit field layout a caller can pass to openSidePanel() to bypass the renderer's own auto-resolution (from its per-layer config). Used when the caller (e.g. POI) already knows the authoritative field list and title.

    interface SidePanelLayout {
        layerId: string;
        fields: readonly SidePanelLayoutField[];
        titleField?: string;
        lngLat?: { lng: number; lat: number };
        featureId?: string | number;
    }
    Index

    Properties

    layerId: string
    fields: readonly SidePanelLayoutField[]
    titleField?: string
    lngLat?: { lng: number; lat: number }
    featureId?: string | number