InformationDataProviderBase.GenerateLayerItems Property
Gets or sets a value indicating whether or not it is necessary to automatically generate items for this layer.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v18.2.dll
Declaration
public bool GenerateLayerItems { get; set; }
Public Property GenerateLayerItems As Boolean
Property Value
Type | Description |
---|---|
Boolean | true to generate layer items; otherwise, false. |
Examples
This example demonstrates how to provide the capability for end-users to click on a map and get detailed information about this location, thanks to the Bing Geocode service.
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-geocode-web-service-e4149.
<dxm:InformationLayer.DataProvider>
<dxm:BingGeocodeDataProvider BingKey="{Binding Source={StaticResource BingKey}}"
MaxVisibleResultCount="1"/>
</dxm:InformationLayer.DataProvider>