-
Steps to Trigger Behavior
Link to Minimal Reproducible ExampleExpected BehaviorShow the max price number Actual BehaviorIt shows the string Screenshots (if applicable)Environment
Additional context |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
Did you have a look at the earth quakes example? Can you try if this works?
Maybe even with Otherwise please create a minimal example within this file: https://github.com/maplibre/maplibre-react-native/blob/beta/packages/examples/src/examples/BugReport.tsx |
Beta Was this translation helpful? Give feedback.
-
Of course According to the documentation (https://docs.mapbox.com/style-spec/reference/sources/#geojson-clusterProperties), the 'accumulated' syntax is optional.
I'll do it if the "accumulated" can't be used as a workaround |
Beta Was this translation helpful? Give feedback.
-
Ok, it works with the "accumulated" syntax and it also works with the short syntax.. The issue was that the 'short' syntax failed on IOS when there is some |
Beta Was this translation helpful? Give feedback.
-
I guess this might also be solvable with expressions, to fallback to zero? Might be worth to report this back to MapLibre Native? Closing here, as the RN wrapper isn't at fault here. |
Beta Was this translation helpful? Give feedback.
Ok, it works with the "accumulated" syntax and it also works with the short syntax..
The issue was that the 'short' syntax failed on IOS when there is some
undefined
numbers. Seems like Android is converting them to 0 but IOS do not