The options to create an Azure Maps tile set model.

2025.0

interface AzureMapsTileSetModelCreateOptions {
    language?: string;
    logoUrl?: string;
    subscriptionKey: string;
    tileSetId?: string;
}

Properties

language?: string

Set the label language in the tiles. See the Azure Maps supported languages article for more information. When not provided or if an incorrect value is provided, the value en-US is used.

logoUrl?: string

The URL of a logo. While this is not mandatory according to the attribution article, Azure Maps samples do often show the Microsoft Azure logo. When not provided, no logo is shown.

subscriptionKey: string

The subscription key to connect with Azure Map's rendering services. See the Shared Key authentication article for more information.

tileSetId?: string

The map contents. See the TilesetID article for more information about the available values. When not provided, the value microsoft.base.road is used.