CRS.EPSG3857
export var EPSG3857 = Util.extend({}, Earth, {
code: "EPSG:3857",
projection: SphericalMercator,
transformation: function () {
var scale = 0.5 / (math.PI * SphericalMercator.R);
return toTransformation(scale, 0.5, -scale, 0.5);
},
});
export var EPSG900913 = Util.extend({}, EPSG3857, {
code: "EPSG:900913",
});
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
编辑 (opens new window)
上次更新: 2025/04/18, 09:09:53