mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-08 16:05:50 +00:00
Add map projections
Add TransverseMercatorProjection, PolarStereographicProjection and derived UTM/UPS projections to the base library.
This commit is contained in:
parent
568f55feb0
commit
e45180b26a
18 changed files with 647 additions and 332 deletions
|
|
@ -17,7 +17,8 @@ namespace MapControl
|
|||
/// </summary>
|
||||
public class EquirectangularProjection : MapProjection
|
||||
{
|
||||
public const string DefaultCrsId = "EPSG:4326";
|
||||
public const int DefaultEpsgCode = 4326;
|
||||
public static readonly string DefaultCrsId = $"EPSG:{DefaultEpsgCode}";
|
||||
|
||||
public EquirectangularProjection()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue