mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2025-12-06 07:12:04 +01:00
Update WorldMercatorProjection.cs
This commit is contained in:
parent
6c1349db1d
commit
eb5b76d78a
|
|
@ -15,10 +15,10 @@ namespace MapControl
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class WorldMercatorProjection : MapProjection
|
public class WorldMercatorProjection : MapProjection
|
||||||
{
|
{
|
||||||
public const string DefaultCrsId = "EPSG:3395";
|
private const double ConvergenceTolerance = 1e-6;
|
||||||
|
private const int MaxIterations = 10;
|
||||||
|
|
||||||
public static double ConvergenceTolerance { get; set; } = 1e-6;
|
public const string DefaultCrsId = "EPSG:3395";
|
||||||
public static int MaxIterations { get; set; } = 10;
|
|
||||||
|
|
||||||
public WorldMercatorProjection()
|
public WorldMercatorProjection()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue