From 5a02ed934586dd0d26bd5dfff19cb84dc53d03f7 Mon Sep 17 00:00:00 2001 From: Clemens Date: Sun, 20 Feb 2022 18:22:39 +0100 Subject: [PATCH] Update GeoApiProjection.cs --- MapProjections/Shared/GeoApiProjection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MapProjections/Shared/GeoApiProjection.cs b/MapProjections/Shared/GeoApiProjection.cs index 0eb9391d..1c3d7544 100644 --- a/MapProjections/Shared/GeoApiProjection.cs +++ b/MapProjections/Shared/GeoApiProjection.cs @@ -86,7 +86,7 @@ namespace MapControl.Projections (centralParallel == null || centralParallel.Value == 0d) && (falseEasting == null || falseEasting.Value == 0d) && (falseNorthing == null || falseNorthing.Value == 0d); - IsWebMercator = CrsId == "EPSG:3857" || CrsId == "EPSG:900913"; + IsWebMercator = CrsId == "EPSG:3857"; scaleFactor = 1d; bboxFormat = "{0},{1},{2},{3}"; }