Update WorldMercatorProjection.cs

This commit is contained in:
Clemens 2022-03-06 23:28:28 +01:00
parent 6c1349db1d
commit eb5b76d78a

View file

@ -15,10 +15,10 @@ namespace MapControl
/// </summary>
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 static int MaxIterations { get; set; } = 10;
public const string DefaultCrsId = "EPSG:3395";
public WorldMercatorProjection()
{