You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the functions to convert deprecated functions to expressions, we are converting functions with type exponential and base 1 to interpolation expressions with type ["exponential", 1]. While this is the most exact conversion, would it be more useful to convert these to type ["linear"]?
I have a quick clarification:
So when base equals 1, we would just change the expression to look like this expression = ['interpolate', ['linear'], ['number', ['get', parameters.property]]]
and this should be done in both the convertPropertyFunction and the convertZoomFunction?
So when base equals 1, we would just change the expression to look like this expression = ['interpolate', ['linear'], ['number', ['get', parameters.property]]]
Correct!
and this should be done in both the convertPropertyFunction and the convertZoomFunction?
In the functions to convert deprecated functions to expressions, we are converting functions with type
exponential
and base1
to interpolation expressions with type["exponential", 1]
. While this is the most exact conversion, would it be more useful to convert these to type["linear"]
?/cc @anandthakker @jfirebaugh @tristen @aparlato
The text was updated successfully, but these errors were encountered: