Index: Ringtoets/Common/src/Ringtoets.Common.Forms/Views/RingtoetsMapDataFactory.cs
===================================================================
diff -u -rf718135c08ce7b90cc0eaf40bfb83c9af48a1776 -rf724e2a23cc180381b736c4da1318d87398e5758
--- Ringtoets/Common/src/Ringtoets.Common.Forms/Views/RingtoetsMapDataFactory.cs (.../RingtoetsMapDataFactory.cs) (revision f718135c08ce7b90cc0eaf40bfb83c9af48a1776)
+++ Ringtoets/Common/src/Ringtoets.Common.Forms/Views/RingtoetsMapDataFactory.cs (.../RingtoetsMapDataFactory.cs) (revision f724e2a23cc180381b736c4da1318d87398e5758)
@@ -24,6 +24,7 @@
using System.Drawing.Drawing2D;
using Core.Components.Gis.Data;
using Core.Components.Gis.Style;
+using Ringtoets.Common.Data;
using Ringtoets.Common.Data.AssessmentSection;
using Ringtoets.Common.Data.DikeProfiles;
using Ringtoets.Common.Data.FailureMechanism;
@@ -115,7 +116,7 @@
{
return new MapLineData(Resources.DikeProfiles_DisplayName)
{
- Style = new LineStyle(Color.DarkSeaGreen, 2, DashStyle.Solid)
+ Style = new LineStyle(Color.SaddleBrown, 2, DashStyle.Solid)
};
}
@@ -127,8 +128,20 @@
{
return new MapLineData(Resources.ForeshoreProfiles_DisplayName)
{
- Style = new LineStyle(Color.LightSeaGreen, 2, DashStyle.Solid)
+ Style = new LineStyle(Color.DarkOrange, 2, DashStyle.Solid)
};
}
+
+ ///
+ /// Create with default styling for collections of .
+ ///
+ /// The created .
+ public static MapPointData CreateStructuresMapData()
+ {
+ return new MapPointData(Resources.StructuresCollection_DisplayName)
+ {
+ Style = new PointStyle(Color.DarkSeaGreen, 15, PointSymbol.Square)
+ };
+ }
}
}
\ No newline at end of file