How to add markers bulk in leaflet?

Egor Sazanovich picture Egor Sazanovich · Jun 28, 2013 · Viewed 17.6k times · Source

I have an array with ~30k elements and I need to create map with markers for each of them. I use markerclusters and trying to optimize adding moment.

for (var i = 0; i < myItems.length; i++) {
    var item = myItems[i];

    marker = new L.marker([item[2],item[3]], {
        icon: mapOpts.myIcon
    }).bindPopup(item[1]);

    markers.addLayer(marker);

}

Even Google Chrome takes about 40 sec to do this loop. I don't want to see FF's result.

Is there any way to optimize adding many elements to map?

Answer

malhal picture malhal · Sep 1, 2014
var markerArray = [];
markerArray.push(L.marker([51.505, -0.09]));
...
var group = L.featureGroup(markerArray).addTo(map);
map.fitBounds(group.getBounds());