EPSG Codes & CRS IDs

This commit is contained in:
ClemensFischer 2024-07-12 13:57:27 +02:00
parent b74e5aaf7a
commit ce6f190bf1
18 changed files with 151 additions and 195 deletions

View file

@ -18,10 +18,10 @@ namespace MapControl
{
public const string DefaultCrsId = "AUTO2:42004";
public AutoEquirectangularProjection()
public AutoEquirectangularProjection(string crsId = DefaultCrsId)
{
Type = MapProjectionType.NormalCylindrical;
CrsId = DefaultCrsId;
CrsId = crsId;
}
public override Point? LocationToMap(Location location)