Type alias TOutdoorViewOptionsWithHeaders

TOutdoorViewOptionsWithHeaders: {
    attributionPosition?: "top-left" | "top-right" | "bottom-left" | "bottom-right";
    customAttribution?: string | string[];
    headers: {
        [key: string]: string | null;
    };
    url?: string;
}

Defines the options for an Outdoor View when initialized with headers for authentication.

Type declaration

  • Optional attributionPosition?: "top-left" | "top-right" | "bottom-left" | "bottom-right"

    The position on the map where the attribution should be displayed.

    Default

    'bottom-right'
    
  • Optional customAttribution?: string | string[]

    Custom text or an array of texts to be used for the map attribution.

  • headers: {
        [key: string]: string | null;
    }

    An object containing HTTP headers for authentication purposes.

    • [key: string]: string | null
  • Optional url?: string

    The URL to the map style file.