Sanjin Šarić
Sanjin Šarić
How can one implement this feature? I understand that the transition happen smoothly because updating the layer color happens directly on main thread, the source doesn't get reloaded (the feature...
@lucaswoj I am quite familiar with the codebase. Thats not a problem. I have an issue with these steps. Have you considered performance side of things? Imagine a scenario: 1....
Well isn't this an issue, wouldn't this be bad for user experience? Should't we consider another approach?
@lucaswoj I've been digging around this: ```javascript populatePaintArray(layer, paintArray, length, globalProperties, featureProperties) { const start = paintArray.length; paintArray.resize(length); for (const attribute of this.attributes) { const value = getPaintAttributeValue(attribute, layer, globalProperties,...
I started doing this task. I will have to make a PR here as well as ```mapbox-gl-style-spec``` repository. I am experimenting with the categorical function for now, it will have...