Additional tests and code comments

This commit is contained in:
Andreas Hocevar
2016-04-28 16:29:29 +02:00
parent 7e940e618e
commit 395793b921
7 changed files with 164 additions and 69 deletions

View File

@@ -56,7 +56,7 @@ ol.source.VectorTile = function(options) {
* @private
* @type {boolean}
*/
this.overlaps_ = options.overlaps || true;
this.overlaps_ = options.overlaps == undefined ? true : options.overlaps;
/**
* @protected