Minor changes to sample apps

This commit is contained in:
Clemens 2021-05-02 18:50:35 +02:00
parent ad9a5267ee
commit 4fc8594563
4 changed files with 49 additions and 36 deletions

View file

@ -57,15 +57,6 @@ namespace ViewModel
MaxZoomLevel = 17
}
},
{
"Hike & Bike",
new MapTileLayer
{
TileSource = new TileSource { UriFormat = "https://tiles.wmflabs.org/hikebike/{z}/{x}/{y}.png" },
SourceName = "HikeBike",
Description = "© [OpenStreetMap contributors](http://www.openstreetmap.org/copyright)"
}
},
{
"Seamarks",
new MapTileLayer
@ -135,7 +126,7 @@ namespace ViewModel
{
"SevenCs ChartServer WMS",
new ChartServerLayer()
},
}
};
private string currentMapLayerName = "OpenStreetMap";
@ -167,7 +158,6 @@ namespace ViewModel
"OpenStreetMap German",
"OpenStreetMap French",
"OpenTopoMap",
"Hike & Bike",
"TopPlusOpen WMTS",
"TopPlusOpen WMS",
"OpenStreetMap WMS",
@ -195,7 +185,7 @@ namespace ViewModel
public ChartServerLayer()
{
Description = "© [SevenCs GmbH](http://www.sevencs.com)";
ServiceUri = new Uri("https://wms.sevencs.com:9090");
ServiceUri = new Uri("http://wms.sevencs.com");
Layers = "ENC";
MaxBoundingBoxWidth = 360;
}