From 285e625acc45a81007dbb4d8a8b906143795db7f Mon Sep 17 00:00:00 2001 From: Mihai Varga Date: Mon, 19 Oct 2015 15:06:51 +0300 Subject: [PATCH] loleaflet: initialize the part/page rectangles arrays --- loleaflet/src/layer/tile/TileLayer.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/loleaflet/src/layer/tile/TileLayer.js b/loleaflet/src/layer/tile/TileLayer.js index eb7005082..fa7b26560 100644 --- a/loleaflet/src/layer/tile/TileLayer.js +++ b/loleaflet/src/layer/tile/TileLayer.js @@ -87,6 +87,8 @@ L.TileLayer = L.GridLayer.extend({ this._msgQueue = []; this._toolbarCommandValues = {}; this._previewInvalidations = []; + this._partPageRectanglesTwips = []; + this._partPageRectanglesPixels = []; }, onAdd: function (map) {