geojs 1.14.2 → 1.14.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/geo.js CHANGED
@@ -24154,7 +24154,7 @@ var _osmLayer = function osmLayer(arg) {
24154
24154
  queue: m_this._queue,
24155
24155
  overlap: m_this._options.tileOverlap,
24156
24156
  scale: m_this._options.tileScale,
24157
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains),
24157
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains),
24158
24158
  crossDomain: m_this._options.crossDomain
24159
24159
  });
24160
24160
  };
@@ -24868,7 +24868,7 @@ var _pixelmapLayer = function pixelmapLayer(arg) {
24868
24868
  queue: m_this._queue,
24869
24869
  overlap: m_this._options.tileOverlap,
24870
24870
  scale: m_this._options.tileScale,
24871
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains),
24871
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains),
24872
24872
  crossDomain: m_this._options.crossDomain
24873
24873
  });
24874
24874
  };
@@ -28169,7 +28169,7 @@ module.exports = _sceneObject;
28169
28169
  * @constant
28170
28170
  * @type {string}
28171
28171
  */
28172
- module.exports = "8e2a6bf94ba85a370a33f2144165d89dd6061439";
28172
+ module.exports = "46b6e1bfe0459d463d4410f9e6ef3cfa221fcdea";
28173
28173
 
28174
28174
  /***/ }),
28175
28175
 
@@ -31329,7 +31329,7 @@ var _tileLayer = function tileLayer(arg) {
31329
31329
  y: m_this._options.tileHeight
31330
31330
  },
31331
31331
  queue: m_this._queue,
31332
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains)
31332
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains)
31333
31333
  });
31334
31334
  };
31335
31335
 
@@ -40056,7 +40056,7 @@ module.exports = _vectorFeature;
40056
40056
  * @constant
40057
40057
  * @type {string}
40058
40058
  */
40059
- module.exports = "1.14.2";
40059
+ module.exports = "1.14.3";
40060
40060
 
40061
40061
  /***/ }),
40062
40062
 
package/geo.lean.js CHANGED
@@ -21153,7 +21153,7 @@ var _osmLayer = function osmLayer(arg) {
21153
21153
  queue: m_this._queue,
21154
21154
  overlap: m_this._options.tileOverlap,
21155
21155
  scale: m_this._options.tileScale,
21156
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains),
21156
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains),
21157
21157
  crossDomain: m_this._options.crossDomain
21158
21158
  });
21159
21159
  };
@@ -21867,7 +21867,7 @@ var _pixelmapLayer = function pixelmapLayer(arg) {
21867
21867
  queue: m_this._queue,
21868
21868
  overlap: m_this._options.tileOverlap,
21869
21869
  scale: m_this._options.tileScale,
21870
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains),
21870
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains),
21871
21871
  crossDomain: m_this._options.crossDomain
21872
21872
  });
21873
21873
  };
@@ -25168,7 +25168,7 @@ module.exports = _sceneObject;
25168
25168
  * @constant
25169
25169
  * @type {string}
25170
25170
  */
25171
- module.exports = "8e2a6bf94ba85a370a33f2144165d89dd6061439";
25171
+ module.exports = "46b6e1bfe0459d463d4410f9e6ef3cfa221fcdea";
25172
25172
 
25173
25173
  /***/ }),
25174
25174
 
@@ -28328,7 +28328,7 @@ var _tileLayer = function tileLayer(arg) {
28328
28328
  y: m_this._options.tileHeight
28329
28329
  },
28330
28330
  queue: m_this._queue,
28331
- url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, 0), m_this._options.subdomains)
28331
+ url: m_this._options.url.call(m_this, urlParams.x, urlParams.y, Math.max(urlParams.level || 0, Math.min(0, m_this._options.minLevel || 0)), m_this._options.subdomains)
28332
28332
  });
28333
28333
  };
28334
28334
 
@@ -37055,7 +37055,7 @@ module.exports = _vectorFeature;
37055
37055
  * @constant
37056
37056
  * @type {string}
37057
37057
  */
37058
- module.exports = "1.14.2";
37058
+ module.exports = "1.14.3";
37059
37059
 
37060
37060
  /***/ }),
37061
37061