What is the maximum number of markers in a tile library in a standard browser?

I use Leaflet on standard terms, say, Firefox on a regular PC. What is the maximum number of markers that it can display at the same time?

I don’t need the exact number, just to know the possibilities, about 1000 points, about 10.000, or can it display 100 thousand without problems?

+4
source share
1 answer

I assume that the border is something like 1000, since it is very difficult for the browser to cope with a huge number of instances of the smal object. For example, if you load hundrets of point features from KML, it becomes quite slow in every JS web map infrastructure.

The best way to solve this problem is to use server-side components to filter objects. For example, streamlined stream layers for low zoom levels and just a stream of nessary objects within your current map view using the bbox filter strategy.

+3
source

Source: https://habr.com/ru/post/1568581/


All Articles