@evergis/api 3.0.110 → 3.0.111

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/dist/api.esm.js CHANGED
@@ -6251,6 +6251,7 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6251
6251
  _this.name = configuration.name;
6252
6252
  _this.styleId = configuration.style;
6253
6253
  _this.conditionQuery = configuration.condition;
6254
+ _this.filterId = configuration.dataFilterId;
6254
6255
 
6255
6256
  _this.subscribeRedraw();
6256
6257
 
@@ -6274,11 +6275,22 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6274
6275
  get: // @ts-ignore TODO
6275
6276
  function get() {
6276
6277
  return this.conditionQuery;
6277
- },
6278
+ } // @ts-ignore TODO
6279
+ ,
6278
6280
  set: function set(condition) {
6279
6281
  this.conditionQuery = condition;
6280
6282
  this.forceUpdate();
6281
6283
  }
6284
+ }, {
6285
+ key: "dataFilterId",
6286
+ get: // @ts-ignore TODO
6287
+ function get() {
6288
+ return this.filterId;
6289
+ },
6290
+ set: function set(filterId) {
6291
+ this.filterId = filterId;
6292
+ this.forceUpdate();
6293
+ }
6282
6294
  }, {
6283
6295
  key: "getUrl",
6284
6296
  value: function getUrl(bbox, resolution) {
@@ -6290,7 +6302,8 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6290
6302
  size: [imgWidth, imgHeight],
6291
6303
  extentSr: bbox.crs.wkid,
6292
6304
  styleId: this.styleId,
6293
- condition: this.conditionQuery
6305
+ condition: this.conditionQuery,
6306
+ dataFilterId: this.filterId
6294
6307
  });
6295
6308
  }
6296
6309
  }, {