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

    Branding control instance (members accessed via this).

    interface BrandingControl {
        _map: BrandingMapLike | null;
        _controlHandle: GeoLeafControl | null;
        _container: HTMLElement | null;
        _cleanups: (() => void)[];
        _options: BrandingOptions;
        init(map: BrandingMapLike, options?: Partial<BrandingOptions>): void;
        _createControl(): void;
        destroy(): void;
        show(): void;
        hide(): void;
        setText(text: string): void;
    }
    Index

    Properties

    _map: BrandingMapLike | null
    _controlHandle: GeoLeafControl | null
    _container: HTMLElement | null
    _cleanups: (() => void)[]
    _options: BrandingOptions

    Methods