FIMViz.jsAPI
    Preparing search index...

    Interface Runtime

    interface Runtime {
        bootstrap: (fim: any) => Promise<void>;
        createPanel: (root: Element) => any;
        getMountedMap: () => any;
        markup: string;
        teardownMap: () => void;
    }
    Index
    bootstrap: (fim: any) => Promise<void>

    boot the map; called by create() instead of its default createMap() path, with the FimMap being mounted

    createPanel: (root: Element) => any

    per-instance Layer Panel factory

    getMountedMap: () => any

    reported once bootstrap() resolves

    markup: string

    widget HTML injected into the container

    teardownMap: () => void

    detach listeners on destroy()