geojs 1.10.3 → 1.10.4

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
@@ -8555,7 +8555,10 @@ var canvas_tileLayer = function canvas_tileLayer() {
8555
8555
 
8556
8556
  this._update = function (request) {
8557
8557
  s_update.call(m_this, request);
8558
- m_quadFeature.nearestPixel(m_this.nearestPixel());
8558
+
8559
+ if (m_quadFeature && m_quadFeature.nearestPixel) {
8560
+ m_quadFeature.nearestPixel(m_this.nearestPixel());
8561
+ }
8559
8562
 
8560
8563
  m_this._addBaseQuadToTiles(m_quadFeature, m_tiles);
8561
8564
 
@@ -27866,7 +27869,7 @@ module.exports = sceneObject;
27866
27869
  * @constant
27867
27870
  * @type {string}
27868
27871
  */
27869
- module.exports = "8d01f4a68bc4d89c1612e1d19e1805f8e555669b";
27872
+ module.exports = "3e924c64da3ad1b47324b2d5106e85db1bf1d809";
27870
27873
 
27871
27874
  /***/ }),
27872
27875
 
@@ -41026,7 +41029,7 @@ module.exports = vectorFeature;
41026
41029
  * @constant
41027
41030
  * @type {string}
41028
41031
  */
41029
- module.exports = "1.10.3";
41032
+ module.exports = "1.10.4";
41030
41033
 
41031
41034
  /***/ }),
41032
41035
 
@@ -44076,7 +44079,10 @@ var webgl_pixelmapFeature = function webgl_pixelmapFeature(arg) {
44076
44079
 
44077
44080
  if (arg.quadFeature) {
44078
44081
  m_quadFeature = arg.quadFeature;
44079
- m_quadFeature.nearestPixel(true);
44082
+
44083
+ if (m_quadFeature.nearestPixel) {
44084
+ m_quadFeature.nearestPixel(true);
44085
+ }
44080
44086
  }
44081
44087
 
44082
44088
  this._init(arg);
@@ -46106,7 +46112,10 @@ var webgl_tileLayer = function webgl_tileLayer() {
46106
46112
 
46107
46113
  this._update = function (request) {
46108
46114
  s_update.call(m_this, request);
46109
- m_quadFeature.nearestPixel(m_this.nearestPixel());
46115
+
46116
+ if (m_quadFeature && m_quadFeature.nearestPixel) {
46117
+ m_quadFeature.nearestPixel(m_this.nearestPixel());
46118
+ }
46110
46119
 
46111
46120
  m_this._addBaseQuadToTiles(m_quadFeature, m_tiles);
46112
46121
 
package/geo.lean.js CHANGED
@@ -8555,7 +8555,10 @@ var canvas_tileLayer = function canvas_tileLayer() {
8555
8555
 
8556
8556
  this._update = function (request) {
8557
8557
  s_update.call(m_this, request);
8558
- m_quadFeature.nearestPixel(m_this.nearestPixel());
8558
+
8559
+ if (m_quadFeature && m_quadFeature.nearestPixel) {
8560
+ m_quadFeature.nearestPixel(m_this.nearestPixel());
8561
+ }
8559
8562
 
8560
8563
  m_this._addBaseQuadToTiles(m_quadFeature, m_tiles);
8561
8564
 
@@ -27866,7 +27869,7 @@ module.exports = sceneObject;
27866
27869
  * @constant
27867
27870
  * @type {string}
27868
27871
  */
27869
- module.exports = "8d01f4a68bc4d89c1612e1d19e1805f8e555669b";
27872
+ module.exports = "3e924c64da3ad1b47324b2d5106e85db1bf1d809";
27870
27873
 
27871
27874
  /***/ }),
27872
27875
 
@@ -41026,7 +41029,7 @@ module.exports = vectorFeature;
41026
41029
  * @constant
41027
41030
  * @type {string}
41028
41031
  */
41029
- module.exports = "1.10.3";
41032
+ module.exports = "1.10.4";
41030
41033
 
41031
41034
  /***/ }),
41032
41035
 
@@ -44076,7 +44079,10 @@ var webgl_pixelmapFeature = function webgl_pixelmapFeature(arg) {
44076
44079
 
44077
44080
  if (arg.quadFeature) {
44078
44081
  m_quadFeature = arg.quadFeature;
44079
- m_quadFeature.nearestPixel(true);
44082
+
44083
+ if (m_quadFeature.nearestPixel) {
44084
+ m_quadFeature.nearestPixel(true);
44085
+ }
44080
44086
  }
44081
44087
 
44082
44088
  this._init(arg);
@@ -46106,7 +46112,10 @@ var webgl_tileLayer = function webgl_tileLayer() {
46106
46112
 
46107
46113
  this._update = function (request) {
46108
46114
  s_update.call(m_this, request);
46109
- m_quadFeature.nearestPixel(m_this.nearestPixel());
46115
+
46116
+ if (m_quadFeature && m_quadFeature.nearestPixel) {
46117
+ m_quadFeature.nearestPixel(m_this.nearestPixel());
46118
+ }
46110
46119
 
46111
46120
  m_this._addBaseQuadToTiles(m_quadFeature, m_tiles);
46112
46121