Updated OSM German/French

This commit is contained in:
Clemens 2021-11-24 20:47:48 +01:00
parent 9c3fc8fd48
commit 5111708ac6

View file

@ -21,6 +21,8 @@ namespace SampleApplication
{ {
public event PropertyChangedEventHandler PropertyChanged; public event PropertyChangedEventHandler PropertyChanged;
// See https://wiki.openstreetmap.org/wiki/Tile_servers for a list of free OpenStreetMap Tile Servers
private readonly Dictionary<string, UIElement> mapLayers = new Dictionary<string, UIElement> private readonly Dictionary<string, UIElement> mapLayers = new Dictionary<string, UIElement>
{ {
{ {
@ -36,7 +38,7 @@ namespace SampleApplication
"OpenStreetMap German", "OpenStreetMap German",
new MapTileLayer new MapTileLayer
{ {
TileSource = new TileSource { UriFormat = "https://tile.openstreetmap.de/{z}/{x}/{y}.png" }, TileSource = new TileSource { UriFormat = "https://{s}.tile.openstreetmap.de/{z}/{x}/{y}.png" },
SourceName = "OpenStreetMap German", SourceName = "OpenStreetMap German",
Description = "© [OpenStreetMap contributors](http://www.openstreetmap.org/copyright)" Description = "© [OpenStreetMap contributors](http://www.openstreetmap.org/copyright)"
} }
@ -45,7 +47,7 @@ namespace SampleApplication
"OpenStreetMap French", "OpenStreetMap French",
new MapTileLayer new MapTileLayer
{ {
TileSource = new TileSource { UriFormat = "https://tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png" }, TileSource = new TileSource { UriFormat = "http://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png" },
SourceName = "OpenStreetMap French", SourceName = "OpenStreetMap French",
Description = "© [OpenStreetMap France](https://www.openstreetmap.fr/mentions-legales/) © [OpenStreetMap contributors](http://www.openstreetmap.org/copyright)" Description = "© [OpenStreetMap France](https://www.openstreetmap.fr/mentions-legales/) © [OpenStreetMap contributors](http://www.openstreetmap.org/copyright)"
} }