FIMViz.jsAPI
    Preparing search index...

    Interface GoogleCreateOptions

    interface GoogleCreateOptions {
        apiKey: string;
        center?: { lat: number; lng: number };
        libraries?: string[];
        mapId?: string;
        mapOptions?: any;
        version?: string;
        zoom?: number;
    }
    Index
    apiKey: string

    Google Maps JS API key (required — this provider's requiresApiKey is true).

    center?: { lat: number; lng: number }

    initial map center; defaults to the continental US.

    libraries?: string[]

    additional Maps JS API libraries to load (e.g. ['visualization']).

    mapId?: string

    a Google Cloud-configured Map ID (cloud-based styling / Advanced Markers).

    mapOptions?: any

    raw google.maps.MapOptions, merged LAST — wins over every default/derived option above.

    version?: string

    the Maps JS API version channel.

    zoom?: number

    initial zoom level; defaults to 5.