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

    Subset of the map adapter consumed by the scale control.

    interface ScaleMapLike {
        on(event: string, handler: () => void): void;
        off(event: string, handler: () => void): void;
        addControl(control: HTMLElement, position: string): GeoLeafControl;
        getContainer(): HTMLElement;
        getCenter(): GeoLeafLatLng;
        getZoom(): number;
        setView(center: GeoLeafLatLng, zoom: number): void;
        pointToLatLng(point: GeoLeafPoint): GeoLeafLatLng;
    }
    Index

    Methods