mirror of https://gitee.com/antv-l7/antv-l7
90 lines
2.0 KiB
TypeScript
90 lines
2.0 KiB
TypeScript
import { Scene, HeatmapLayer } from '@antv/l7';
|
|
import { GaodeMap } from '@antv/l7-maps';
|
|
import * as React from 'react';
|
|
|
|
export default class Amap2demo_heatmap_grid extends React.Component {
|
|
// @ts-ignore
|
|
private scene: Scene;
|
|
|
|
public componentWillUnmount() {
|
|
this.scene.destroy();
|
|
}
|
|
|
|
public async componentDidMount() {
|
|
const scene = new Scene({
|
|
id: 'map',
|
|
map: new GaodeMap({
|
|
pitch: 0,
|
|
center: [110.097892, 33.853662],
|
|
zoom: 4.056,
|
|
}),
|
|
});
|
|
this.scene = scene;
|
|
|
|
scene.on('loaded', () => {
|
|
fetch(
|
|
'https://gw.alipayobjects.com/os/basement_prod/7359a5e9-3c5e-453f-b207-bc892fb23b84.csv',
|
|
)
|
|
.then((res) => res.text())
|
|
.then((data) => {
|
|
const layer = new HeatmapLayer({})
|
|
.source(data, {
|
|
parser: {
|
|
type: 'csv',
|
|
x: 'lng',
|
|
y: 'lat',
|
|
},
|
|
transforms: [
|
|
{
|
|
type: 'grid',
|
|
size: 20000,
|
|
field: 'v',
|
|
method: 'sum',
|
|
},
|
|
],
|
|
})
|
|
.shape('circle')
|
|
.style({
|
|
coverage: 0.9,
|
|
angle: 0,
|
|
})
|
|
.color(
|
|
'count',
|
|
[
|
|
'#8C1EB2',
|
|
'#8C1EB2',
|
|
'#DA05AA',
|
|
'#F0051A',
|
|
'#FF2A3C',
|
|
'#FF4818',
|
|
'#FF4818',
|
|
'#FF8B18',
|
|
'#F77B00',
|
|
'#ED9909',
|
|
'#ECC357',
|
|
'#EDE59C',
|
|
].reverse(),
|
|
);
|
|
scene.addLayer(layer);
|
|
});
|
|
});
|
|
}
|
|
|
|
public render() {
|
|
return (
|
|
<>
|
|
<div
|
|
id="map"
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
}}
|
|
/>
|
|
</>
|
|
);
|
|
}
|
|
}
|