Added Auto Transverse Mercator Projection

This commit is contained in:
ClemensFischer 2026-01-10 00:31:27 +01:00
parent 2686cda333
commit 8630c6ed70
5 changed files with 51 additions and 18 deletions

View file

@ -36,6 +36,10 @@ namespace MapControl
projection = new Wgs84AutoUtmProjection();
break;
case Wgs84AutoTmProjection.DefaultCrsId:
projection = new Wgs84AutoTmProjection();
break;
case OrthographicProjection.DefaultCrsId:
projection = new OrthographicProjection();
break;