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
I have a simple map with many markers and possibility to select one. Clicking marker updates a controller-view state and the Map rerenders. I have a feeling that all markers are rerendered even if they didn't change. So there is no diffing mechanism like React does it with HTML, rendering only the differences. Is that correct?
It has two unfortunate consequences:
Decrease of performance with growing number of markers.
Flickering of markers if they overlap -- I suppose they are rendered assynchronously in slightly different order everytime. You can check that behavior on http://windfreaks.net.
Do you see any solution for these problems?
The text was updated successfully, but these errors were encountered:
I have a simple map with many markers and possibility to select one. Clicking marker updates a controller-view state and the Map rerenders. I have a feeling that all markers are rerendered even if they didn't change. So there is no diffing mechanism like React does it with HTML, rendering only the differences. Is that correct?
It has two unfortunate consequences:
Do you see any solution for these problems?
The text was updated successfully, but these errors were encountered: