Fix typecast
This commit is contained in:
@@ -109,7 +109,7 @@ ol.TileQueue.prototype.loadMoreTiles = function() {
|
|||||||
*/
|
*/
|
||||||
ol.TileQueue.prototype.reprioritize = function() {
|
ol.TileQueue.prototype.reprioritize = function() {
|
||||||
if (!this.queue_.isEmpty()) {
|
if (!this.queue_.isEmpty()) {
|
||||||
var values = /** @type {Array.<Array>} */ this.queue_.getValues();
|
var values = /** @type {Array.<Array>} */ (this.queue_.getValues());
|
||||||
this.queue_.clear();
|
this.queue_.clear();
|
||||||
this.queuedTileKeys_ = {};
|
this.queuedTileKeys_ = {};
|
||||||
var i;
|
var i;
|
||||||
|
|||||||
Reference in New Issue
Block a user