diff --git a/SampleApps/Shared/MapLayers.cs b/SampleApps/Shared/MapLayers.cs
index 5564bf9f..fa37febc 100644
--- a/SampleApps/Shared/MapLayers.cs
+++ b/SampleApps/Shared/MapLayers.cs
@@ -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;
}
diff --git a/SampleApps/UniversalApp/MainPage.xaml b/SampleApps/UniversalApp/MainPage.xaml
index 3444c2dd..4060041c 100644
--- a/SampleApps/UniversalApp/MainPage.xaml
+++ b/SampleApps/UniversalApp/MainPage.xaml
@@ -114,7 +114,9 @@
-
+
+
@@ -149,27 +151,35 @@
-
-
+
+
-
-
+
-
-
-
+
+
+
+
-
+
+
-
-
diff --git a/SampleApps/WpfApplication/MainWindow.xaml b/SampleApps/WpfApplication/MainWindow.xaml
index 779e562e..4b8d789b 100644
--- a/SampleApps/WpfApplication/MainWindow.xaml
+++ b/SampleApps/WpfApplication/MainWindow.xaml
@@ -102,6 +102,8 @@
+
+
@@ -130,10 +132,14 @@
MouseMove="MapMouseMove" MouseLeave="MapMouseLeave"
ManipulationInertiaStarting="MapManipulationInertiaStarting">
-
-
+
+
@@ -175,30 +181,37 @@
-
+
+
-
+
+ Width="75" VerticalAlignment="Center" SmallChange="5" LargeChange="45"
+ Minimum="0" Maximum="360" Value="{Binding TargetHeading, ElementName=map}"/>
+
-
-
+
+
-
+
+
+
+
diff --git a/SampleApps/WpfApplication/MainWindow.xaml.cs b/SampleApps/WpfApplication/MainWindow.xaml.cs
index 5cbabafe..1121e45b 100644
--- a/SampleApps/WpfApplication/MainWindow.xaml.cs
+++ b/SampleApps/WpfApplication/MainWindow.xaml.cs
@@ -109,7 +109,7 @@ namespace WpfApplication
private void SeamarksChecked(object sender, RoutedEventArgs e)
{
- map.Children.Insert(map.Children.IndexOf(mapGraticule), ((MapViewModel)DataContext).MapLayers.SeamarksLayer);
+ map.Children.Insert(map.Children.IndexOf(graticule), ((MapViewModel)DataContext).MapLayers.SeamarksLayer);
}
private void SeamarksUnchecked(object sender, RoutedEventArgs e)