mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-01-31 04:44:14 +01:00
Removed azimuthal and "auto" map projections
This commit is contained in:
parent
76b879dfac
commit
8233273779
|
|
@ -21,15 +21,10 @@ namespace MapControl
|
|||
public const int FirstZoneSouthEpsgCode = 32700 + FirstZone;
|
||||
public const int LastZoneSouthEpsgCode = 32700 + LastZone;
|
||||
|
||||
public int Zone { get; private set; }
|
||||
public Hemisphere Hemisphere { get; private set; }
|
||||
public int Zone { get; }
|
||||
public Hemisphere Hemisphere { get; }
|
||||
|
||||
public Wgs84UtmProjection(int zone, Hemisphere hemisphere)
|
||||
{
|
||||
SetZone(zone, hemisphere);
|
||||
}
|
||||
|
||||
public void SetZone(int zone, Hemisphere hemisphere)
|
||||
{
|
||||
if (zone < FirstZone || zone > LastZone)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue