Parameterless constructors of projection classes

This commit is contained in:
ClemensFischer 2024-08-28 14:58:06 +02:00
parent 7637210211
commit ece82bd654
10 changed files with 77 additions and 11 deletions

View file

@ -19,7 +19,13 @@ namespace MapControl
{
public const string DefaultCrsId = "EPSG:4326";
public EquirectangularProjection(string crsId = DefaultCrsId)
public EquirectangularProjection()
: this(DefaultCrsId)
{
// XAML needs parameterless constructor
}
public EquirectangularProjection(string crsId)
{
Type = MapProjectionType.NormalCylindrical;
CrsId = crsId;