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 noticing increasing load times for the world_map request (up to 5-10s) due to, I imagine large payloads (1,3Mb in below network trace).
During that time, the front-end feels unresponsive, which in some occasions feels a bit unconfortable, specially when presenting the site to others.
Just putting this here to discuss, I don't have any clear idea on how to solve it other than trying to reduce the payload for the map request and update it as the user navigates.
The text was updated successfully, but these errors were encountered:
That doesn't reduce the server response nor the download time but it reduces the number of markers to be created and those it reduces the load time while improves the overall navigation experience.
The primary reason the slider works well on reducing the time is the markers are not created directly in Leaflet but instead they are created as Angular objects. I found out that operation is a bit slow.
Hi,
I have noticing increasing load times for the world_map request (up to 5-10s) due to, I imagine large payloads (1,3Mb in below network trace).
During that time, the front-end feels unresponsive, which in some occasions feels a bit unconfortable, specially when presenting the site to others.
Just putting this here to discuss, I don't have any clear idea on how to solve it other than trying to reduce the payload for the map request and update it as the user navigates.
The text was updated successfully, but these errors were encountered: