Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 657 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 657 Bytes

supercluster Simply Awesome Build Status

A very fast JavaScript library for geospatial point clustering for browsers and Node. A work in progress.

var index = supercluster({
    radius: 40,
    maxZoom: 16
});
index.load(points);
index.getClusters([-180, -85, 180, 85], 2);

Clustering 6 million points in Leaflet:

clusters2