mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-06 06:55:04 +00:00
Version 5.0.1: Reworked MapBase and MapProjection
This commit is contained in:
parent
81ec8e7eb2
commit
2b41d298f4
4 changed files with 22 additions and 26 deletions
|
|
@ -22,15 +22,15 @@ namespace MapControl
|
|||
public const double Wgs84Flattening = 1d / 298.257223563;
|
||||
public static readonly double Wgs84Eccentricity = Math.Sqrt((2d - Wgs84Flattening) * Wgs84Flattening);
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the projection center. Only relevant for azimuthal projections.
|
||||
/// </summary>
|
||||
public Location Center { get; set; } = new Location();
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the WMS 1.3.0 CRS identifier.
|
||||
/// </summary>
|
||||
public string CrsId { get; set; }
|
||||
public string CrsId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the projection center.
|
||||
/// </summary>
|
||||
public Location Center { get; set; } = new Location();
|
||||
|
||||
/// <summary>
|
||||
/// Indicates if this is a normal cylindrical projection.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue