Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

OpenStreetMapDataProvider Class

The class that loads map images from a web resource that provides data in the OpenStreetMap format.

Namespace: DevExpress.Xpf.Map

Assembly: DevExpress.Xpf.Map.v24.2.dll

NuGet Package: DevExpress.Wpf.Map

#Declaration

public class OpenStreetMapDataProvider :
    MapDataProviderBase

#Remarks

Before using map images in the OpenStreetMap format, please review the Copyright and License and Tile usage policy pages. To control which OpenStreetMap subdomains should be used, use the OpenStreetMapDataProvider.Subdomains property. The OpenStreetMapDataProvider.TileUriTemplate property allows specifying the OpenStreetMap data provider used to obtain tiles.

#Example

Tip

A complete sample project is available in the DevExpress Code Examples database at https://supportcenter.devexpress.com/ticket/details/e3617/how-to-connect-to-openstreetmap.

This example demonstrates how to connect to the OpenStreetMap web service using the OpenStreetMapDataProvider object.

private void OnWebRequest(object sender, DevExpress.Xpf.Map.MapWebRequestEventArgs e) {
    e.UserAgent = "DevExpress OpenStreetMapProvider example";
}

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the OpenStreetMapDataProvider class.

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.

#Inheritance

See Also