antv-l7/stories/Layers/components/lineAnimate.tsx

74 lines
1.6 KiB
TypeScript

import { LineLayer, Scene } from '@antv/l7';
import { Mapbox } from '@antv/l7-maps';
import * as React from 'react';
export default class LineDemo extends React.Component {
// @ts-ignore
private scene: Scene;
public componentWillUnmount() {
this.scene.destroy();
}
public async componentDidMount() {
const response = await fetch(
'https://gw.alipayobjects.com/os/basement_prod/49a796db-944b-4c35-aa97-1015f0a407f1.json',
);
const scene = new Scene({
id: 'map',
map: new Mapbox({
center: [110.19382669582967, 40.258134],
pitch: 0,
zoom: 3,
style: 'dark',
}),
});
const data = await response.json();
data.features = data.features.map((fe: any) => {
if (fe.properties.saldo < 0) {
fe.geometry.coordinates = fe.geometry.coordinates.reverse();
}
return fe;
});
const lineLayer = new LineLayer({
blend: 'normal',
});
lineLayer
.source(data)
.shape('line')
.size('saldo', [0.4, 0.8])
.color('saldo', (v) => {
return v < 0 ? 'rgb(60,255,255)' : 'rgb(255,255,60)';
})
// .color('red')
.animate({
enable: true,
interval: 0.1,
duration: 3,
trailLength: 0.2,
})
.style({
opacity: 1,
})
.render();
lineLayer.fitBounds();
scene.addLayer(lineLayer);
this.scene = scene;
}
public render() {
return (
<div
id="map"
style={{
position: 'absolute',
top: 0,
left: 0,
right: 0,
bottom: 0,
}}
/>
);
}
}