From 82b1b3e599d0d65cd7b1c1890af2bd5198f99849 Mon Sep 17 00:00:00 2001 From: Ian Gilman Date: Fri, 19 May 2017 11:12:01 -0700 Subject: [PATCH] getClosestLevel refinement --- src/tilesource.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/tilesource.js b/src/tilesource.js index d4c1e044..e83c4fab 100644 --- a/src/tilesource.js +++ b/src/tilesource.js @@ -320,18 +320,20 @@ $.TileSource.prototype = { /** * @function + * @returns {Number} The highest level in this tile source that can be contained in a single tile. */ getClosestLevel: function() { var i, tiles; - for( i = this.minLevel; i <= this.maxLevel; i++ ){ - tiles = this.getNumTiles( i ); + for (i = this.minLevel + 1; i <= this.maxLevel; i++){ + tiles = this.getNumTiles(i); if (tiles.x > 1 || tiles.y > 1) { break; } } - return Math.max( 0, i - 1 ); + + return i - 1; }, /**