aboutsummaryrefslogtreecommitdiffstats
path: root/extlib/leaflet/src/geo/crs/CRS.EPSG3857.js
diff options
context:
space:
mode:
Diffstat (limited to 'extlib/leaflet/src/geo/crs/CRS.EPSG3857.js')
-rw-r--r--extlib/leaflet/src/geo/crs/CRS.EPSG3857.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/extlib/leaflet/src/geo/crs/CRS.EPSG3857.js b/extlib/leaflet/src/geo/crs/CRS.EPSG3857.js
deleted file mode 100644
index cbdbd03a..00000000
--- a/extlib/leaflet/src/geo/crs/CRS.EPSG3857.js
+++ /dev/null
@@ -1,17 +0,0 @@
-
-L.CRS.EPSG3857 = L.Util.extend({}, L.CRS, {
- code: 'EPSG:3857',
-
- projection: L.Projection.SphericalMercator,
- transformation: new L.Transformation(0.5/Math.PI, 0.5, -0.5/Math.PI, 0.5),
-
- project: function(/*LatLng*/ latlng)/*-> Point*/ {
- var projectedPoint = this.projection.project(latlng),
- earthRadius = 6378137;
- return projectedPoint.multiplyBy(earthRadius);
- }
-});
-
-L.CRS.EPSG900913 = L.Util.extend({}, L.CRS.EPSG3857, {
- code: 'EPSG:900913'
-}); \ No newline at end of file