Back to Devexpress

How to: Connect a Map Control to the OpenStreetMap Search Service

wpf-120293-controls-and-libraries-map-control-examples-gis-data-searching-how-to-connect-a-map-control-to-the-openstreetmap-search-service.md

latest1.2 KB
Original Source

How to: Connect a Map Control to the OpenStreetMap Search Service

  • Apr 27, 2018

This example demonstrates how to add an image layer displaying map tiles from the OSM service and an information layer that searches for a place on the map using the OSM search service. It uses the following classes:

ClassDescription
ImageLayerDisplays map images obtained from map image data providers.
OpenStreetMapDataProviderThe class that loads map images from a web resource that provides data in the OpenStreetMap format.
InformationLayerA layer that is used to display additional information above the map.
OsmSearchDataProviderProvides the search options using the Open Street Map service.
xaml
<dxm:MapControl>
    <dxm:ImageLayer>
        <dxm:OpenStreetMapDataProvider />
    </dxm:ImageLayer>
    <dxm:InformationLayer>
        <dxm:OsmSearchDataProvider />
    </dxm:InformationLayer>
</dxm:MapControl>