Skip to main content
All docs
V25.1
  • AzureMapDataProvider.Tileset Property

    Specifies the tileset that the provider loads from the service.

    Namespace: DevExpress.Xpf.Map

    Assembly: DevExpress.Xpf.Map.v25.1.dll

    NuGet Package: DevExpress.Wpf.Map

    Declaration

    public AzureTileset Tileset { get; set; }

    Property Value

    Type Description
    AzureTileset

    A tileset supplied by Azure Maps.

    Available values:

    Name Description Image
    Imagery

    A combination of satellite or aerial imagery. Only available in S1 and G2 pricing SKU. Supports zoom levels 1 through 19. Format: raster (png).

    MapControl for WPF - Azure tileset Imagery

    TerraMain

    Shaded relief and terra layers. Supports zoom levels 1 through 17. Format: raster (png).

    MapControl for WPF - Azure tileset TerraMain

    BaseDarkGrey

    Label data in the Azure Maps dark grey style. Supports zoom levels 1 through 22. Format: raster (png).

    MapControl for WPF - Azure tileset BaseDarkGrey

    BaseHybridDarkgrey

    Road, boundary and label data in the Azure Maps dark grey style. Supports zoom levels 1 through 22. Format: raster (png).

    MapControl for WPF - Azure tileset BaseHybridDarkgrey

    BaseHybridRoad

    Road, boundary and label data in the Azure Maps main style. Supports zoom levels 1 through 22. Format: raster (png).

    MapControl for WPF - Azure tileset BaseHybridRoad

    BaseLabelsDarkgrey

    Label data in the Azure Maps dark grey style. Supports zoom levels 1 through 22. Format: raster (png).

    MapControl for WPF - Azure tileset BaseLabelsDarkgrey

    BaseLabelsRoad

    Label data in the Azure Maps main style. Supports zoom levels 1 through 22. Format: raster (png).

    MapControl for WPF - Azure tileset BaseLabelsRoad

    BaseRoad

    All layers with the Azure Maps main style. Supports zoom levels 1 through 22. Format: raster (png).

    MapControl for WPF - Azure tileset BaseRoad

    WeatherInfraredMain

    Weather infrared tiles. Latest Infrared Satellite images shows clouds by their temperature. Supports zoom levels 1 through 15. Format: raster (png).

    MapControl for WPF - Azure tileset WeatherInfraredMain

    WeatherRadarMain

    Weather radar tiles. Latest weather radar images including areas of rain, snow, ice, and mixed conditions. Supports zoom levels 1 through 15. Format: raster (png).

    MapControl for WPF - Azure tileset WeatherRadarMain

    Remarks

    The AzureTileset enumerator lists a set predefined raster tilesets you can apply to a layer. Set the Tileset property to one of AzureTileset values to allow the provider to load the corresponding tileset from the service.

    The following example connects to Azure Maps and specifies map layers:

    Azure Map Layers

    <dxm:MapControl>
        <dxm:ImageLayer>
            <dxm:AzureMapDataProvider Tileset="Imagery" AzureKey="your key"/>
        </dxm:ImageLayer>
        <dxm:ImageLayer>
            <dxm:AzureMapDataProvider Tileset="BaseLabelsRoad" AzureKey="your key"/>
        </dxm:ImageLayer>
    </dxm:MapControl>
    
    See Also