Replies: 1 comment 1 reply
-
Do you mean filtering qualitative values? If so your new Layer({
...
extensions: [new DataFilterExtension()],
filterRange: [1, 1],
getFilterValue: (f) => {
if (f.properties.yourColumn === 'some-string') {
return 1; // true
}
return 0; // false
}
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It's posible to filter GeoJsonLayer data with other criteria different to filterRange?, for example with something like filterContains?
Beta Was this translation helpful? Give feedback.
All reactions