我正在使用supertiler库将 1000 万点的 GeoJson 转换为 MapBox 切片 (.mbtiles)。
var vList = ['a', 'b', 'c', 'd', 'e', 'f', 'g']; // List of video IDs
supertiler({
input: '../file.json',
output: '../file.mbtiles',
maxZoom: 12,
initial: () => {
var t = Object();
videoList.forEach(v => {
t[v] = 0
});
return t;
},
map: (props) => {
var t = Object();
videoList.forEach(v => {
t[v] = v === props.i ? 1 : 0; // i is the video ID - property of a single point
});
return t;
},
reduce: (accumulated, props) => {
videoList.forEach(v => {
accumulated[v] = accumulated[v] + props[v];
});
}
}).then(null, (err) => console.log(err));
然后,我使用他们的 Uploads API 将 .mbtiles 文件上传到 Mapbox,以便我可以将数据作为矢量源添加到我的应用程序中。
map.addSource(layerID, {
type: 'vector',
url: 'mapbox://octopusmapbox.vLayer',
});
map.addLayer({
id: `${layerID}-cluster`,
type: 'circle',
source: layerID,
'source-layer': 'geojsonLayer',
maxzoom: 12.99,
paint: {
'circle-color': 'hsla(1, 86%, 65%, 0.5)',
'circle-radius': [
'interpolate',
['linear'],
['get', 'point_count'],
0,
20,
156342,
200,
],
'circle-opacity': 0.7,
'circle-stroke-color': '#f35e5b',
'circle-stroke-width': 1,
},
});
当我控制台记录集群的属性时,我看不到任何集群属性,而只有以下内容:
{
"cluster": true,
"cluster_id": 612,
"point_count": 1399,
"point_count_abbreviated": "1.4k"
}
如何访问属性“a”、“b”、“c”等?
最终目标是实现这样的目标。
提前致谢。