我正在关注此示例https://www.mapbox.com/mapbox-gl-js/example/timeline-animation/以创建基于时间的可视化。 我正在使用这个版本“d3”:“^ 5.4.0” 代码是:
d3.json('http://127.0.0.1:5000', function (err, data) {
if (err) throw err;
// Create a month property value based on time
// used to filter against.
data.features = data.features.map(function (d) {
d.properties.month = new Date(d.properties.time).getMonth();
return d;
});
map.addSource('visits', {
'type': 'geojson',
'data': data
});
map.addLayer({
'id': 'visits-circles',
'type': 'circle',
'source': 'visits',
'paint': {
'circle-color': [
'interpolate',
['linear'],
['get', 'name'],
6, '#FCA107',
8, '#7F3121'
],
'circle-opacity': 0.75,
'circle-radius': [
'interpolate',
['linear'],
['get', 'name'],
6, 20,
8, 40
]
}
});
map.addLayer({
'id': 'visits-labels',
'type': 'symbol',
'source': 'visits',
'layout': {
'text-field': ['concat', ['to-string', ['get', 'name']], 'm'],
'text-font': ['Open Sans Bold', 'Arial Unicode MS Bold'],
'text-size': 12
},
'paint': {
'text-color': 'rgba(0,0,0,0.5)'
}
});
// Set filter to first month of the year
// 0 = January
filterBy(0);
document.getElementById('slider').addEventListener('input', function (e) {
var month = parseInt(e.target.value, 10);
filterBy(month);
});
我对我的数据的URL做了完全相同的事情,但我收到了一些错误消息
错误TS2559:输入'(错误:任何,数据:任意)=> void'没有属性 与'RequestInit'类型错误TS2339:属性'值'有关 在'EventTarget'类型中不存在。
有没有人知道如何解决它?
答案 0 :(得分:1)
d3的类型信息建议使用基于promise的接口 - 也许旧版本使用回调。
您的代码遵循回调模式:
d3.json('http://127.0.0.1:5000', function (err, data) {
// Handle err
// Use data
});
这是承诺版本:
d3.json('http://127.0.0.1:5000')
.then((data) => {
// Use data
})
.catch((err) => {
// Handle err
});
您可以输入您获得的data
。将类型参数传递给json
方法,告诉它将返回哪种数据。例如:
interface ResponseData {
features: any[];
}
d3.json<ResponseData>('http://127.0.0.1:5000')
.then((data) => {
// Use data
})
.catch((err) => {
// Handle err
});