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

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