Added MapProjectionFactory

This commit is contained in:
Clemens 2022-01-19 16:43:00 +01:00
parent 67b87acb44
commit e2fcc1db2c
12 changed files with 87 additions and 17 deletions

View file

@ -14,9 +14,11 @@ namespace MapControl
/// </summary>
public class StereographicProjection : AzimuthalProjection
{
public const string DefaultCrsId = "AUTO2:97002"; // GeoServer non-standard CRS ID
public StereographicProjection()
{
CrsId = "AUTO2:97002"; // GeoServer non-standard CRS ID
CrsId = DefaultCrsId;
}
public override Point LocationToMap(Location location)