Fix building without zoom animations enabled

This commit is contained in:
danzel 2013-02-21 15:15:24 +13:00
parent 16b09c758a
commit 1681365040

View File

@ -524,10 +524,12 @@ L.TileLayer = L.Class.extend({
if (!this._tilesToLoad) { if (!this._tilesToLoad) {
this.fire('load'); this.fire('load');
if (this._animated) {
// clear scaled tiles after all new tiles are loaded (for performance) // clear scaled tiles after all new tiles are loaded (for performance)
clearTimeout(this._clearBgBufferTimer); clearTimeout(this._clearBgBufferTimer);
this._clearBgBufferTimer = setTimeout(L.bind(this._clearBgBuffer, this), 500); this._clearBgBufferTimer = setTimeout(L.bind(this._clearBgBuffer, this), 500);
} }
}
}, },
_tileOnLoad: function () { _tileOnLoad: function () {