wpf-devexpress-dot-xpf-dot-map-dot-azuremapdataprovider-060cd230.md
Specifies the key you receive when you create an Azure Maps account.
Namespace : DevExpress.Xpf.Map
Assembly : DevExpress.Xpf.Map.v25.2.dll
NuGet Package : DevExpress.Wpf.Map
public string AzureKey { get; set; }
Public Property AzureKey As String
| Type | Description |
|---|---|
| String |
A string that stores an Azure Maps key.
|
The following code snippets (auto-collected from DevExpress Examples) contain references to the AzureKey property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
wpf-map-process-search-with-a-custom-search-panel/CS/MapControl_SearchPanel/MainWindow.xaml#L29
<dxm:ImageLayer.DataProvider>
<dxm:AzureMapDataProvider AzureKey="{Binding Source={StaticResource azureKey}}"/>
</dxm:ImageLayer.DataProvider>
wpf-map-search-with-azure-map-search-service/CS/DXMapExample/MainWindow.xaml#L26
<dxm:ImageLayer>
<dxm:AzureMapDataProvider AzureKey="{Binding Source={StaticResource azureMapsKey}}" />
</dxm:ImageLayer>
See Also