From 0a83b83237f188d9c402657c0d93530d8ade351c Mon Sep 17 00:00:00 2001 From: Vladimir Agafonkin Date: Mon, 25 Feb 2013 12:45:33 +0200 Subject: [PATCH] fix whitespace --- src/layer/tile/TileLayer.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/layer/tile/TileLayer.js b/src/layer/tile/TileLayer.js index 0a492884..e9618b9c 100644 --- a/src/layer/tile/TileLayer.js +++ b/src/layer/tile/TileLayer.js @@ -368,11 +368,11 @@ L.TileLayer = L.Class.extend({ if (this.options.bounds) { var tileSize = this.options.tileSize, - nwPoint = tilePoint.multiplyBy(tileSize), - sePoint = nwPoint.add(new L.Point(tileSize, tileSize)), - nw = this._map.unproject(nwPoint), - se = this._map.unproject(sePoint), - bounds = new L.LatLngBounds([nw, se]); + nwPoint = tilePoint.multiplyBy(tileSize), + sePoint = nwPoint.add(new L.Point(tileSize, tileSize)), + nw = this._map.unproject(nwPoint), + se = this._map.unproject(sePoint), + bounds = new L.LatLngBounds([nw, se]); if (!this.options.bounds.intersects(bounds)) { return false;