We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc6bb6d commit af03233Copy full SHA for af03233
src/crs/EPSG3857.ts
@@ -7,7 +7,7 @@ const D2R = Math.PI / 180;
7
const A = 6378137.0;
8
const MAXEXTENT = 20037508.342789244;
9
10
-export function ESPG3857ToWGS84(xy: Position): Position {
+export function EPSG3857ToWGS84(xy: Position): Position {
11
return [
12
(xy[0] * R2D) / A,
13
(Math.PI * 0.5 - 2.0 * Math.atan(Math.exp(-xy[1] / A))) * R2D,
0 commit comments