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

    Interface INormalizedInitOptions

    Output of APIInitializationManager._normalizeInitOptions.

    interface INormalizedInitOptions {
        mapId: string;
        center: [number, number];
        zoom: number;
        theme: string;
        mapOptions: Record<string, unknown>;
        _adapter?: unknown;
    }
    Index

    Properties

    mapId: string
    center: [number, number]
    zoom: number
    theme: string
    mapOptions: Record<string, unknown>
    _adapter?: unknown

    Internal — pre-created adapter injected by the boot sequence so _createInstance() reuses it instead of creating a second one. Typed unknown to keep this public type boundary decoupled from the adapter contract; narrowed at the consumption point (map/facade.ts). Absent for direct GeoLeaf.init() calls.