Skip to content

Commit af03233

Browse files
authored
fix: fix typo (#237)
1 parent fc6bb6d commit af03233

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crs/EPSG3857.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const D2R = Math.PI / 180;
77
const A = 6378137.0;
88
const MAXEXTENT = 20037508.342789244;
99

10-
export function ESPG3857ToWGS84(xy: Position): Position {
10+
export function EPSG3857ToWGS84(xy: Position): Position {
1111
return [
1212
(xy[0] * R2D) / A,
1313
(Math.PI * 0.5 - 2.0 * Math.atan(Math.exp(-xy[1] / A))) * R2D,

0 commit comments

Comments
 (0)