8.0.1 • Published 12 months ago

supercluster v8.0.1

Weekly downloads
504,383
License
ISC
Repository
github
Last release
12 months ago

supercluster Simply Awesome Build Status

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

const index = new Supercluster({radius: 40, maxZoom: 16});
index.load(points);

const clusters = index.getClusters([-180, -85, 180, 85], 2);

Clustering 6 million points in Leaflet:

clustering demo on an interactive Leaflet map

Supercluster was built to power clustering in Mapbox GL JS. Read about how it works on the Mapbox blog.

Install

Install using NPM (npm install supercluster) or Yarn (yarn add supercluster), then:

// import as a ES module in Node
import Supercluster from 'supercluster';

// import from a CDN in the browser:
import Supercluster from 'https://esm.run/supercluster';

Or use it with an ordinary script tag in the browser:

<script src="https://unpkg.com/supercluster@8.0.0/dist/supercluster.min.js"></script>

Methods

load(points)

Loads an array of GeoJSON Feature objects. Each feature's geometry must be a GeoJSON Point. Once loaded, index is immutable.

getClusters(bbox, zoom)

For the given bbox array ([westLng, southLat, eastLng, northLat]) and integer zoom, returns an array of clusters and points as GeoJSON Feature objects.

getTile(z, x, y)

For a given zoom and x/y coordinates, returns a geojson-vt-compatible JSON tile object with cluster/point features.

getChildren(clusterId)

Returns the children of a cluster (on the next zoom level) given its id (cluster_id value from feature properties).

getLeaves(clusterId, limit = 10, offset = 0)

Returns all the points of a cluster (given its cluster_id), with pagination support: limit is the number of points to return (set to Infinity for all points), and offset is the amount of points to skip (for pagination).

getClusterExpansionZoom(clusterId)

Returns the zoom on which the cluster expands into several children (useful for "click to zoom" feature) given the cluster's cluster_id.

Options

OptionDefaultDescription
minZoom0Minimum zoom level at which clusters are generated.
maxZoom16Maximum zoom level at which clusters are generated.
minPoints2Minimum number of points to form a cluster.
radius40Cluster radius, in pixels.
extent512(Tiles) Tile extent. Radius is calculated relative to this value.
nodeSize64Size of the KD-tree leaf node. Affects performance.
logfalseWhether timing info should be logged.
generateIdfalseWhether to generate ids for input features in vector tiles.

Property map/reduce options

In addition to the options above, Supercluster supports property aggregation with the following two options:

  • map: a function that returns cluster properties corresponding to a single point.
  • reduce: a reduce function that merges properties of two clusters into one.

Example of setting up a sum cluster property that accumulates the sum of myValue property values:

const index = new Supercluster({
    map: (props) => ({sum: props.myValue}),
    reduce: (accumulated, props) => { accumulated.sum += props.sum; }
});

The map/reduce options must satisfy these conditions to work correctly:

  • map must return a new object, not existing properties of a point, otherwise it will get overwritten.
  • reduce must not mutate the second argument (props).

TypeScript

Install @types/supercluster for the TypeScript type definitions:

npm install @types/supercluster --save-dev 

Developing Supercluster

npm install       # install dependencies
npm run build     # generate dist/supercluster.js and dist/supercluster.min.js
npm test          # run tests
@simosol/mapbox-gl-js-offlinetargeting-helper@galactica-ui/legacy-plugin-chart-map-boxbst-map-gl@mahdi-esbati/react-mapbox-gljobs-uijobs-ui-testgraasp-insightschyuning.react-native-baidumap-sdkalphakit@mapcreator/mapbox-glbokabord-web-components@react-native-norah/trotiefarshid-kit-test-123route-planner-npm4@everything-registry/sub-chunk-2850@langge-data/mapbox-gl@idjokic-spiria/react-native-cluster-map@idleaustralia/ngx-mapbox-gl@inelo/maplibre-gl@infamoustrey/react-mapbox-gl@hansdo/maplibre-gl@gustavoisensee/react-native-map-clustering@giasin/react-native-web-maps@intcount/intcount-clustering@instrumentor/react-mapbox-gl@ivelander/mapbox-gl@jbcampbell/react-native-maps-super-cluster@local-logic/sdks-app@manivannan372/reactnative-maps-cluster@nebula.gl/overlays@moi-xiey/react-native-bmap-sdk@kantas/vector-js@khang00/kepler.gl@geops/maplibre-gl@geomatico/mapbox-gl@globalfishingwatch/mapbox-gl@globalfishingwatch/maplibre-gl@gometro/mobility-observatory-visualization-module@gon-dev/react-native-map-clustering@goongmaps/goong-js@googlemaps/markerclusterer@mahdi-esbati/react-mapbox@lighthouse/sdk@melmcchau/markerclustererfortypescript@mapgis/mapbox-gl@mapcat/mapbox-gl@mapcat/mapcat-gl@maps-gl/maps-gl@mpvite/react-native-map-clustering@morsedigital/better-maps@zhao2guai/vue3-maptalkszh-react-native-baidumap-sdkx-mapbox-glvz-map-libvue3-use-cesiumxtal-glxyd-mapbox-gl@staxy-app/react-native-web-maps@varlab-ucf/nebulagl-overlays@onepark/react-native-component-map-clustering@onsmart/map@onthegomap/mapbox-gl@orca-fe/x-map@phanisai4u/react-native-maps-super-cluster@porsager/mapbox-gl@portalbeanzvn/cluster@plotly/mapbox-gl@superset-ui/legacy-plugin-chart-map-box@shitao1988/swsk-react-mapbox-gl@shitao1988/swsk.kepler.gl@shitao1988/swsk-kepler-gl@sheerun/react-mapbox-gl@sreuter/react-native-web-maps@windycom/maplibre-gl@wildflowerschools/wf-school-map-utilitynebula.gl-react@webdeb/mapbox-gl@wmo-raf/layer-manager@onerecord/widgets@ogix/mapbox-gl@oilstone/js-markerclusterer@sakitam-gis/mapbox-gl@sebf/kepler.gl@krisdages/mapbox-gl@jellyuncle/react-native-baidumapsdk@jhgrrewq/l7-source@kepler.gl/deckgl-layers@jibingeo/react-mapbox-gl@pansy/react-mapbox-gl@pangaeatech/markerclusterer@pinecast/react-mapbox-gl@pirxpilot/mapbox-gl@xbcx/mapbox-gl@edenh/mapbox-glngx-mapbox-gl-patcherasme-kepler.gl@emuanalytics/maplibre-gl@eqworks/kepler.gl@unovis/ts
8.0.1

12 months ago

8.0.0

12 months ago

7.1.5

2 years ago

7.1.4

3 years ago

7.1.3

3 years ago

7.1.2

3 years ago

7.1.1

3 years ago

7.1.0

4 years ago

7.0.0

4 years ago

6.0.2

5 years ago

6.0.1

5 years ago

6.0.0

5 years ago

5.0.0

5 years ago

4.1.1

6 years ago

4.0.1

6 years ago

4.0.0

6 years ago

3.0.3

6 years ago

3.0.2

6 years ago

3.0.1

7 years ago

3.0.0

7 years ago

2.3.0

7 years ago

2.2.0

8 years ago

2.1.0

8 years ago

2.0.1

8 years ago

2.0.0

8 years ago

1.0.0

8 years ago