momenteel geen errors, begonnen nieuwe items toe te voegen op ui

This commit is contained in:
BuildTools
2020-07-26 20:28:32 +02:00
parent 2cea96e863
commit b2ad2d4611
22 changed files with 312 additions and 34 deletions

View File

@@ -5,8 +5,6 @@ using System.Text;
using System.Threading.Tasks;
using System.Windows.Shapes;
using GeoJSON.Net.Geometry;
using Polygon = GeoJSON.Net.Geometry.Polygon;
namespace Globals
{
public class PolygonPunten
@@ -25,7 +23,7 @@ namespace Globals
MinimumY = punten.Min(punt => punt.Y);
}
public PolygonPunten(Polygon p, string naam = "")
public PolygonPunten(GeoJSON.Net.Geometry.Polygon p, string naam = "")
{
Naam = naam;
Punten = new List<Punt>();
@@ -45,6 +43,7 @@ namespace Globals
}
}
}
}
}