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

    Structural contract a side-panel renderer must satisfy. Consumed by the kernel via a runtime duck-type check on globalThis.GeoLeaf.FeatureInfo (see app/boot-modules/feature-info.module.ts) — never imported. Implemented by capabilities/feature-info/surfaces/sidepanel.ts (S9).

    interface ISidePanelRenderer {
        openSidePanel: (
            detail: SidePanelFeatureDetail,
            layout?: SidePanelLayout,
        ) => void;
        closeSidePanel: () => void;
        isSidePanelOpen: () => boolean;
    }
    Index

    Properties

    openSidePanel: (
        detail: SidePanelFeatureDetail,
        layout?: SidePanelLayout,
    ) => void

    Opens (or re-opens) the side-panel for the given feature.

    closeSidePanel: () => void

    Closes the side-panel, if open.

    isSidePanelOpen: () => boolean

    Returns true when the side-panel is currently open.