map.apps Bundle APIs 4.20.0
    Preparing search index...

    Interface BasemapConfigObject

    Contains properties for the construction of a new basemap.

    interface BasemapConfigObject {
        baseLayers?: LayerProperties[];
        id?: string;
        layers?: LayerProperties[];
        style?: BasemapStyleProperties;
        title?: string;
    }
    Index

    Properties

    baseLayers?: LayerProperties[]

    Layers to use when constructed the new base map.

    Cannot be combined with id or style.

    id?: string

    A well known Basemap id, such as "streets-vector".

    Cannot be combined with baseLayers or style.

    layers?: LayerProperties[]

    Use baseLayers instead.

    style?: BasemapStyleProperties

    Basemap style to use when constructing the new basemap.

    Cannot be combined with id or baseLayers.

    title?: string

    Optional title for the new Basemap.