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
reduce the amount of data by filtering according to the viewport (see Change data loading behavior #18). This only helps when we're zoomed in on the map. If you are viewing the whole city, you still need to load all the buildings.
Use clustering (via the Leaflet plug-in, presumably) to reduce the number of features we render on the map, even though we still would load all the buildings from the server.
Switch the map library to a GL map (Tangram or MapboxGL). Either of those should handle 20K points just fine. My main concern with that approach would be to check what browsers we need to support, and how well they handle GL.
The text was updated successfully, but these errors were encountered:
We can improve the map performance in a few ways:
reduce the amount of data by filtering according to the viewport (see Change data loading behavior #18). This only helps when we're zoomed in on the map. If you are viewing the whole city, you still need to load all the buildings.
Use clustering (via the Leaflet plug-in, presumably) to reduce the number of features we render on the map, even though we still would load all the buildings from the server.
Switch the map library to a GL map (Tangram or MapboxGL). Either of those should handle 20K points just fine. My main concern with that approach would be to check what browsers we need to support, and how well they handle GL.
The text was updated successfully, but these errors were encountered: