FIMViz.jsAPI
    Preparing search index...

    Interface LeafletCreateOptions

    interface LeafletCreateOptions {
        center?: { lat: number; lng: number };
        mapOptions?: any;
        tileOptions?: any;
        tileUrl?: string;
        zoom?: number;
    }
    Index
    center?: { lat: number; lng: number }

    initial map center; defaults to the continental US.

    mapOptions?: any

    raw Leaflet L.Map options, passed straight to L.map(el, mapOptions).

    tileOptions?: any

    options passed to L.tileLayer (e.g. attribution).

    tileUrl?: string

    basemap tile URL template; pass null to opt out of the default OpenStreetMap tile layer (e.g. to add your own via L.tileLayer).

    zoom?: number

    initial zoom level; defaults to 5.