Is there really no filter for features? #1575
chandelsboliger
started this conversation in
General
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have looked everywhere and can't find a single site using react map gl where you are able to filter the features.
What i currently have is just a bunch of clusters with some unclustered points inside, where i want to filter those based on the GeoJSON data they have.
const geojson = { type: "FeatureCollection", crs: { type: "name", properties: { name: "urn:ogc:def:crs:OGC:1.3:CRS84" }, }, features: [ { type: "Feature", properties: { id: "cph1", mag: 2.3, time: 1507425650893, felt: null, tsunami: 0, }, geometry: { type: "Point", coordinates: [12.5, 55.67, 0.0], }, }, ], };
Beta Was this translation helpful? Give feedback.
All reactions