[Pkg-javascript-commits] [leaflet] 88/301: Fixing wrong EPGS3395 transformation
Jonas Smedegaard
js at moszumanska.debian.org
Mon Jan 27 22:22:43 UTC 2014
This is an automated email from the git hooks/post-receive script.
js pushed a commit to branch master
in repository leaflet.
commit d10cff3357c49ed68abd51606152f2a6a423a6e6
Author: Alexander Parshin <parshin.alexander at gmail.com>
Date: Tue Sep 10 10:47:52 2013 +0400
Fixing wrong EPGS3395 transformation
---
src/geo/crs/CRS.EPSG3395.js | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/geo/crs/CRS.EPSG3395.js b/src/geo/crs/CRS.EPSG3395.js
index ed03562..786dec9 100644
--- a/src/geo/crs/CRS.EPSG3395.js
+++ b/src/geo/crs/CRS.EPSG3395.js
@@ -7,8 +7,8 @@ L.CRS.EPSG3395 = L.extend({}, L.CRS, {
transformation: (function () {
var m = L.Projection.Mercator,
r = m.R_MAJOR,
- r2 = m.R_MINOR;
+ scale = 0.5 / (Math.PI * r);
- return new L.Transformation(0.5 / (Math.PI * r), 0.5, -0.5 / (Math.PI * r2), 0.5);
+ return new L.Transformation(scale, 0.5, -scale, 0.5);
}())
});
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/leaflet.git
More information about the Pkg-javascript-commits
mailing list