我正在跟踪example provided on the deck.gl github repository,该地理显示来自geojson的多边形。
此后,我改变了地图的初始焦点,并提供了自己的geojson来可视化,我用示例替换的数据具有一个时间分量,我想通过操纵范围输入来使其可视化。
GeoJSON结构示例
{
"type": "FeatureCollection",
"name": "RandomData",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature",
"properties": { "id": 1,"hr00": 10000, "hr01": 12000, "hr02": 12000, "hr03": 30000, "hr04": 40000, "hr05": 10500, "hr06": 50000}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 103.73992, 1.15903 ], [ 103.74048, 1.15935 ], [ 103.74104, 1.15903 ], [ 103.74104, 1.15837 ], [ 103.74048, 1.15805 ], [ 103.73992, 1.15837 ], [ 103.73992, 1.15903 ] ] ] } } ] }
我没有在每个时间点重复每个几何图形,而是将数据的时间方面转移到了属性上。这样一来,整个数据集上的文件大小都是可管理的(〜50mb对〜500mb)。
为了可视化单个时间点,我知道可以将属性提供给getElevation
和getFillColor
。
_renderLayers() {
const {data = DATA_URL} = this.props;
return [
new GeoJsonLayer({
id: 'geojson',
data,
opacity: 0.8,
stroked: false,
filled: true,
extruded: true,
wireframe: true,
fp64: true,
getElevation: f => f.properties.hr00,
getFillColor: f => COLOR_SCALE(f.properties.hr00),
getLineColor: [255, 255, 255],
lightSettings: LIGHT_SETTINGS,
pickable: true,
onHover: this._onHover,
transitions: {
duration: 300
}
})
];
}
因此,我继续使用range.slider,向我的app.js
添加了代码,并添加了以下代码段。我相信我也可能将其放置在错误的位置,这是否应该存在于render()
中?
import ionRangeSlider from 'ion-rangeslider';
// Code for slider input
$("#slider").ionRangeSlider({
min: 0,
max: 24,
from: 12,
step: 1,
grid: true,
grid_num: 1,
grid_snap: true
});
$(".js-range-slider").ionRangeSlider();
已添加到我的index.html
<input type="text" id="slider" class="js-range-slider" name="my_range" value=""/>
那么如何让滑块更改将我的geojson的哪个属性提供给getElevation
和getFillColor
?
我的JavaScript / JQuery缺乏,我无法找到任何有关如何根据输入来更改数据属性的明确示例,我们将不胜感激。
Here is a codesandbox link - doesn't seem to like it there however.
在本地使用npm install
和npm start
应该使它的行为符合预期。
答案 0 :(得分:1)
首先,您需要告诉您的依赖访问器有关将由滑块更改的值。这可以通过使用updateTriggers
来完成:
_renderLayers() {
const { data = DATA_URL } = this.props;
return [
new GeoJsonLayer({
// ...
getElevation: f => f.properties[this.state.geoJsonValue],
getFillColor: f => COLOR_SCALE(f.properties[this.state.geoJsonValue]),
updateTriggers: {
getElevation: [this.state.geoJsonValue],
getFillColor: [this.state.geoJsonValue]
}
// ...
})
];
}
要使用范围滑块实际更改此值,您需要在初始化期间添加onChange
回调:
constructor(props) {
super(props);
this.state = { hoveredObject: null, geoJsonValue: "hr01" };
this.sliderRef = React.createRef();
this._handleChange = this._handleChange.bind(this);
// ...
}
componentDidMount() {
// Code for slider input
$(this.sliderRef.current).ionRangeSlider({
// ...
onChange: this._handleChange
});
}
_handleChange(data) {
this.setState({
geoJsonValue: `hr0${data.from}`
});
}
render() {
...
<DeckGL ...>
...
</DeckGL>
<div id="sliderstyle">
<input
ref={this.sliderRef}
id="slider"
className="js-range-slider"
name="my_range"
/>
</div>
...
}
基本上就是这样。这是full code