@evergis/api 3.0.110 → 3.0.112

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.
@@ -6246,6 +6246,7 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6246
6246
  _this.name = configuration.name;
6247
6247
  _this.styleId = configuration.style;
6248
6248
  _this.conditionQuery = configuration.condition;
6249
+ _this.filterId = configuration.dataFilterId;
6249
6250
 
6250
6251
  _this.subscribeRedraw();
6251
6252
 
@@ -6269,11 +6270,22 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6269
6270
  get: // @ts-ignore TODO
6270
6271
  function get() {
6271
6272
  return this.conditionQuery;
6272
- },
6273
+ } // @ts-ignore TODO
6274
+ ,
6273
6275
  set: function set(condition) {
6274
6276
  this.conditionQuery = condition;
6275
6277
  this.forceUpdate();
6276
6278
  }
6279
+ }, {
6280
+ key: "dataFilterId",
6281
+ get: // @ts-ignore TODO
6282
+ function get() {
6283
+ return this.filterId;
6284
+ },
6285
+ set: function set(filterId) {
6286
+ this.filterId = filterId;
6287
+ this.forceUpdate();
6288
+ }
6277
6289
  }, {
6278
6290
  key: "getUrl",
6279
6291
  value: function getUrl(bbox, resolution) {
@@ -6285,7 +6297,8 @@ let EvergisDynamicLayer = /*#__PURE__*/function (_DynamicLayer) {
6285
6297
  size: [imgWidth, imgHeight],
6286
6298
  extentSr: bbox.crs.wkid,
6287
6299
  styleId: this.styleId,
6288
- condition: this.conditionQuery
6300
+ condition: this.conditionQuery,
6301
+ dataFilterId: this.filterId
6289
6302
  });
6290
6303
  }
6291
6304
  }, {