mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-08 16:05:50 +00:00
Add Nad27UtmProjection
This commit is contained in:
parent
7cf4ed47a3
commit
57e614978b
3 changed files with 60 additions and 27 deletions
|
|
@ -36,6 +36,10 @@ namespace MapControl
|
|||
projection = new Etrs89UtmProjection(epsgCode % 100);
|
||||
break;
|
||||
|
||||
case var c when c >= Nad27UtmProjection.FirstZoneEpsgCode && c <= Nad27UtmProjection.LastZoneEpsgCode:
|
||||
projection = new Nad27UtmProjection(epsgCode % 100);
|
||||
break;
|
||||
|
||||
case var c when c >= Wgs84UtmProjection.FirstZoneNorthEpsgCode && c <= Wgs84UtmProjection.LastZoneNorthEpsgCode:
|
||||
projection = new Wgs84UtmProjection(epsgCode % 100, true);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue