Author: dom Date: 2012-07-15 17:00:21 +0100 (Sun, 15 Jul 2012) New Revision: 1430
Modified: sites/oxford.openguides.org/static/resources/mapnik.js Log: fix mapnik tile URLs according to http://lists.openstreetmap.org/pipermail/announce/2012-June/000062.html
Modified: sites/oxford.openguides.org/static/resources/mapnik.js =================================================================== --- sites/oxford.openguides.org/static/resources/mapnik.js 2012-07-11 12:26:25 UTC (rev 1429) +++ sites/oxford.openguides.org/static/resources/mapnik.js 2012-07-15 16:00:21 UTC (rev 1430) @@ -6,7 +6,7 @@ //var UL = G_NORMAL_MAP.getProjection().fromPixelToLatLng(p0,b,c); //var LR = G_NORMAL_MAP.getProjection().fromPixelToLatLng(p1,b,c);
- var url = this.myBaseURL + "/mapnik_tiles/" + b + "/" + a.x + "/" + a.y + ".png"; + var url = this.myBaseURL + b + "/" + a.x + "/" + a.y + ".png";
return url; -} \ No newline at end of file +}
openguides-commits@lists.openguides.org