TomTom Maps for JavaScript
    Preparing search index...

    Type Alias Landmarks3DOptions

    Configuration for the Landmarks3D plugin.

    type Landmarks3DOptions = {
        displayMode?: Landmarks3DDisplayMode;
        maxZoom?: number;
        minZoom?: number;
        visible?: boolean;
        withCredentials?: boolean;
    }
    Index

    Properties

    Initial display mode for the landmarks. Can also be changed at runtime with Landmarks3D.setDisplayMode.

    'inherited'

    maxZoom?: number

    Maximum zoom at which landmarks are rendered.

    The basemap 3D building layer's maximum zoom, so landmarks disappear together with it (falls back to 22 when that layer is absent).

    minZoom?: number

    Minimum zoom at which landmarks are rendered.

    The basemap 3D building layer's minimum zoom, so landmarks appear together with it (falls back to 10 when that layer is absent).

    visible?: boolean

    Whether the landmarks are initially visible. Can also be changed at runtime with Landmarks3D.setVisible.

    true

    withCredentials?: boolean

    Send credentials: 'include' with each tile request so a proxy session cookie travels with it. By default this tracks the SDK's proxy config, so tiles behave like every other SDK request; set it explicitly only to override that.

    Auto-detected — true when the SDK is configured for a credentialed proxy (no apiKey + non-default commonBaseURL).