InformationLayer.DataProvider Property
Provides access to an object that obtains information data from online data providers.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v18.2.dll
Declaration
public InformationDataProviderBase DataProvider { get; set; }
Public Property DataProvider As InformationDataProviderBase
Property Value
Type | Description |
---|---|
InformationDataProviderBase | An InformationDataProviderBase class descendant that is a specific data provider. |
Remarks
For more information, refer to Map Image Data.
Examples
This example demonstrates how to allow users to search for a specific place on a map using the Search panel.
To enable searching in the map control, do the following.
- Create an InformationLayer and add it to the MapControl.Layers collection.
- Create an instance of the BingSearchDataProvider and assign it to the InformationLayer.DataProvider property.
- Specify the Bing Maps key using the BingMapDataProviderBase.BingKey property.
The Search panel appears automatically (since the BingSearchDataProvider.ShowSearchPanel property value is true by default).
NOTE
If you run the application, and see a window with the following error message: ”The specified Bing Maps key is invalid. To create a developer account, refer to https://www.microsoft.com/en-us/maps/create-a-bing-maps-key”, refer to the following tutorial: How to: Get a Bing Maps Key.
NOTE
A complete sample project is available at https://github.com/DevExpress-Examples/how-to-connect-a-map-control-to-a-bing-search-web-service-e4146.
<dxm:InformationLayer.DataProvider>
<dxm:BingSearchDataProvider BingKey="{Binding Source={StaticResource YourBingKey}}">
<dxm:BingSearchDataProvider.SearchOptions>
<dxm:BingSearchOptions ResultsCount="5" />
</dxm:BingSearchDataProvider.SearchOptions>
</dxm:BingSearchDataProvider>
</dxm:InformationLayer.DataProvider>