Replies: 2 comments 5 replies
-
Don't use nested objects is the best advise I can give you I think... |
Beta Was this translation helpful? Give feedback.
5 replies
-
Flatten the nested data for example like this: {"species_counts":{"id13":3,"id15":5}} flatten to {
"species_counts:id13": 3,
"species_counts:id15": 5
} |
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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I have a PMTiles file with polygon properties in a nested structure like this,
Now, I want to style each feature, based on the value of id13, for example. I've tried to get the nested object property with something like
but anytime I try to put a nested "get" like this, nothing works. Any ideas on how to do this ?
Beta Was this translation helpful? Give feedback.
All reactions