X-Git-Url: https://dev.renevier.net/?p=syj.git;a=blobdiff_plain;f=patches%2Fopenlayers%2F0002-xyz-wrapdateline-fixes-2246.patch;fp=patches%2Fopenlayers%2F0002-xyz-wrapdateline-fixes-2246.patch;h=0000000000000000000000000000000000000000;hp=9ff45dd6fd0b4038e8fda480d76ad22973b90730;hb=5f933abf0cc28142a0c4ed8d41ac79fd897ddb14;hpb=ff111bf3260d256c592b9a2e250875f2b60956e6 diff --git a/patches/openlayers/0002-xyz-wrapdateline-fixes-2246.patch b/patches/openlayers/0002-xyz-wrapdateline-fixes-2246.patch deleted file mode 100644 index 9ff45dd..0000000 --- a/patches/openlayers/0002-xyz-wrapdateline-fixes-2246.patch +++ /dev/null @@ -1,29 +0,0 @@ -From f738bc5fed1dbc67177cdd7066713ee68bcf8df8 Mon Sep 17 00:00:00 2001 -From: arno -Date: Mon, 21 Mar 2011 19:57:20 +0100 -Subject: [PATCH 2/5] xyz-wrapdateline: fixes #2246 - ---- - openlayers/lib/OpenLayers/Layer/XYZ.js | 6 ++++++ - 1 files changed, 6 insertions(+), 0 deletions(-) - -diff --git a/openlayers/lib/OpenLayers/Layer/XYZ.js b/openlayers/lib/OpenLayers/Layer/XYZ.js -index d8cbf53..95769bb 100644 ---- a/openlayers/lib/OpenLayers/Layer/XYZ.js -+++ b/openlayers/lib/OpenLayers/Layer/XYZ.js -@@ -147,6 +147,12 @@ OpenLayers.Layer.XYZ = OpenLayers.Class(OpenLayers.Layer.Grid, { - var z = this.serverResolutions != null ? - OpenLayers.Util.indexOf(this.serverResolutions, res) : - this.map.getZoom() + this.zoomOffset; -+ var limit = Math.pow(2, z); -+ -+ if (this.wrapDateLine) -+ { -+ x = ((x % limit) + limit) % limit; -+ } - - return {'x': x, 'y': y, 'z': z}; - }, --- -1.7.4.1 -