Clustering by Feature Property

Demonstrates how to add clustering by feature property to a layer. Only features with the same property value will clustered together. Styles will be handled automatically by Sintium if no style options are added.
// Instantiating data source with tools data
var toolsSource = Sintium.dataSource({
    url: "https://www.barentswatch.no/api/v1/geodata/download/fishingfacility/?format=JSON"
});

// Instantiating layer with fishing tools data, clustered by tool type
var toolsLayer = Sintium.vectorLayer({
    layerId: 'Tools layer',
    dataSource: toolsSource,
    clusteredByProperty: 'tooltypecode'
});

// Instantiating map
var map = Sintium.map({
    domId: "map",
    layers: [toolsLayer],
    zoomOnClusterClick: true
});
<div id="map" style="width: 100%; height: 500px;"></div>