Interface MapLibreMapOptions

Options accepted by the maplibre-gl Map constructor that HonuaMap uses.

interface MapLibreMapOptions {
    center?: [number, number];
    container: string | HTMLElement;
    style: unknown;
    zoom?: number;
    [key: string]: unknown;
}

Indexable

  • [key: string]: unknown

Properties

center?: [number, number]
container: string | HTMLElement
style: unknown
zoom?: number