Index: Demo/Ringtoets/src/Demo.Ringtoets/Commands/OpenMapViewCommand.cs =================================================================== diff -u -r2a81f01756e227d5ce93717b21b87e8a5cd5fcbb -r670c1b1bf7098043ee3b3e6bce7fcfe7246d580b --- Demo/Ringtoets/src/Demo.Ringtoets/Commands/OpenMapViewCommand.cs (.../OpenMapViewCommand.cs) (revision 2a81f01756e227d5ce93717b21b87e8a5cd5fcbb) +++ Demo/Ringtoets/src/Demo.Ringtoets/Commands/OpenMapViewCommand.cs (.../OpenMapViewCommand.cs) (revision 670c1b1bf7098043ee3b3e6bce7fcfe7246d580b) @@ -57,8 +57,11 @@ public void Execute() { var mapDataCollection = new MapDataCollection(Resources.OpenMapViewCommand_Execute_Demo_map_netherlands); + var waddenMapDataCollection = new MapDataCollection(Resources.OpenMapViewCommand_Execute_Wadden); + var nestedWaddenMapDataCollection = new MapDataCollection(Resources.OpenMapViewCommand_Execute_Wadden_two); + var emptyMapDataCollection = new MapDataCollection(Resources.OpenMapViewCommand_Execute_Empty); - mapDataCollection.Add(new MapPolygonData(Resources.OpenMapViewCommand_Execute_Texel) + waddenMapDataCollection.Add(new MapPolygonData(Resources.OpenMapViewCommand_Execute_Texel) { Features = GetFeatureWithPoints(new[] { @@ -68,7 +71,7 @@ }) }); - mapDataCollection.Add(new MapPolygonData(Resources.OpenMapViewCommand_Execute_Vlieland) + waddenMapDataCollection.Add(new MapPolygonData(Resources.OpenMapViewCommand_Execute_Vlieland) { Features = GetFeatureWithPoints(new[] { @@ -78,7 +81,7 @@ }) }); - mapDataCollection.Add(new MapPolygonData(Resources.OpenMapViewCommand_Execute_Terschelling) + waddenMapDataCollection.Add(new MapPolygonData(Resources.OpenMapViewCommand_Execute_Terschelling) { Features = GetFeatureWithPoints(new[] { @@ -88,7 +91,7 @@ }) }); - mapDataCollection.Add(new MapPolygonData(Resources.OpenMapViewCommand_Execute_Ameland) + nestedWaddenMapDataCollection.Add(new MapPolygonData(Resources.OpenMapViewCommand_Execute_Ameland) { Features = GetFeatureWithPoints(new[] { @@ -98,7 +101,7 @@ }) }); - mapDataCollection.Add(new MapPolygonData(Resources.OpenMapViewCommand_Execute_Schiermonnikoog) + nestedWaddenMapDataCollection.Add(new MapPolygonData(Resources.OpenMapViewCommand_Execute_Schiermonnikoog) { Features = GetFeatureWithPoints(new[] { @@ -108,6 +111,10 @@ }) }); + waddenMapDataCollection.Add(emptyMapDataCollection); + waddenMapDataCollection.Add(nestedWaddenMapDataCollection); + mapDataCollection.Add(waddenMapDataCollection); + mapDataCollection.Add(new MapPointData(Resources.OpenMapViewCommand_Execute_Randstad) { Features = GetFeatureWithPoints(new[] Index: Demo/Ringtoets/src/Demo.Ringtoets/Properties/Resources.Designer.cs =================================================================== diff -u -rff9884bfe0c85c4cf2fab7f197c2c8b1ce23f650 -r670c1b1bf7098043ee3b3e6bce7fcfe7246d580b --- Demo/Ringtoets/src/Demo.Ringtoets/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision ff9884bfe0c85c4cf2fab7f197c2c8b1ce23f650) +++ Demo/Ringtoets/src/Demo.Ringtoets/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 670c1b1bf7098043ee3b3e6bce7fcfe7246d580b) @@ -1,4 +1,4 @@ -// Copyright (C) Stichting Deltares 2018. All rights reserved. +// Copyright (C) Stichting Deltares 2018. All rights reserved. // // This file is part of Ringtoets. // @@ -331,6 +331,15 @@ } /// + /// Looks up a localized string similar to Lege map. + /// + public static string OpenMapViewCommand_Execute_Empty { + get { + return ResourceManager.GetString("OpenMapViewCommand_Execute_Empty", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Kustlijn Flevoland. /// public static string OpenMapViewCommand_Execute_Kustlijn_Flevoland { @@ -394,6 +403,24 @@ } /// + /// Looks up a localized string similar to Waddeneilanden. + /// + public static string OpenMapViewCommand_Execute_Wadden { + get { + return ResourceManager.GetString("OpenMapViewCommand_Execute_Wadden", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Wadden 2. + /// + public static string OpenMapViewCommand_Execute_Wadden_two { + get { + return ResourceManager.GetString("OpenMapViewCommand_Execute_Wadden_two", resourceCulture); + } + } + + /// /// Looks up a localized string similar to Demo kaart categorial theming. /// public static string OpenThematicalMapViewCommand_Execute_Demo_map_with_theming { Index: Demo/Ringtoets/src/Demo.Ringtoets/Properties/Resources.resx =================================================================== diff -u -rff9884bfe0c85c4cf2fab7f197c2c8b1ce23f650 -r670c1b1bf7098043ee3b3e6bce7fcfe7246d580b --- Demo/Ringtoets/src/Demo.Ringtoets/Properties/Resources.resx (.../Resources.resx) (revision ff9884bfe0c85c4cf2fab7f197c2c8b1ce23f650) +++ Demo/Ringtoets/src/Demo.Ringtoets/Properties/Resources.resx (.../Resources.resx) (revision 670c1b1bf7098043ee3b3e6bce7fcfe7246d580b) @@ -256,4 +256,13 @@ EE + + Waddeneilanden + + + Lege map + + + Wadden 2 + \ No newline at end of file