Web App Builder for Developer - Info Summary Widget - issue

264
0
07-24-2020 08:50 AM
Marc-OlivierEthier1
New Contributor

Hi, I found a issue in the info summary Widget using WFS layer. 

When using showAllFeatures in config, do not filter features by map extent :

_queryWFS: function (graphics) {
//return graphics.filter(g => this.map.extent.intersects(g.geometry));
return graphics.filter(lang.hitch(this, function (g) {
if (this.config.showAllFeatures) {
return true;
}
return this.map.extent.intersects(g.geometry);
}));
},

0 Kudos
0 Replies