Bug in isolines
-
This old bug has come back. When putting "store.set('isolines', 'off');", it has no influence on the map. All others isolines are working as they should...
-
Could you please send me a link where it does not work? I am not able to reproduce the bug. Thanks.
-
-
I see, you mean turning isolines off when app is initializing. Use
store.set('isolines', 'off', { forceChange: true })
for this case. The problem is you are trying to set value which is also default value. During initializing this case is ignored. WithforceChange
you can rewrite the rule. -
@marekd said in Bug in isolines:
store.set('isolines', 'off', { forceChange: true })
Thanks again @marekd It's working now, but not in Edge browser?
-
@saaneuvos You are using ES6 which is not supported by Edge.
-
@marekd Hmm, I didn't know that. This means that the current API4 also uses ES6
-
@saaneuvos No.
-
@marekd Strange, because I haven't made any changes to API code as far as I know. I mean, I have only make changes to color schema, fav layers, height, model , isolines and particles...