EntityCluster

new Cesium.EntityCluster(options)

Defines how screen space objects (billboards, points, labels) are clustered.
Name Type Description
options Object optional An object with the following properties:
Name Type Default Description
enabled Boolean false optional Whether or not to enable clustering.
pixelRange Number 80 optional The pixel range to extend the screen space bounding box.
minimumClusterSize Number 2 optional The minimum number of screen space objects that can be clustered.
clusterBillboards Boolean true optional Whether or not to cluster the billboards of an entity.
clusterLabels Boolean true optional Whether or not to cluster the labels of an entity.
clusterPoints Boolean true optional Whether or not to cluster the points of an entity.
Demo:

Members

clusterBillboards : Boolean

Gets or sets whether clustering billboard entities is enabled.
Gets the event that will be raised when a new cluster will be displayed. The signature of the event listener is EntityCluster~newClusterCallback.

clusterLabels : Boolean

Gets or sets whether clustering labels entities is enabled.

clusterPoints : Boolean

Gets or sets whether clustering point entities is enabled.
Gets or sets whether clustering is enabled.

minimumClusterSize : Number

Gets or sets the minimum number of screen space objects that can be clustered.

pixelRange : Number

Gets or sets the pixel range to extend the screen space bounding box.

Methods

Destroys the WebGL resources held by this object. Destroying an object allows for deterministic release of WebGL resources, instead of relying on the garbage collector to destroy this object.

Unlike other objects that use WebGL resources, this object can be reused. For example, if a data source is removed from a data source collection and added to another.

Type Definitions

newClusterCallback(clusteredEntities, cluster)

A event listener function used to style clusters.
Name Type Description
clusteredEntities Array.<Entity> An array of the entities contained in the cluster.
cluster Object An object containing billboard, label, and point properties. The values are the same as billboard, label and point entities, but must be the values of the ConstantProperty.
Example:
// The default cluster values.
dataSource.clustering.clusterEvent.addEventListener(function(entities, cluster) {
    cluster.label.show = true;
    cluster.label.text = entities.length.toLocaleString();
});