mirror of https://gitee.com/antv-l7/antv-l7
57 lines
1.2 KiB
TypeScript
57 lines
1.2 KiB
TypeScript
// @ts-ignore
|
|
import { PolygonLayer, Scene } from '@antv/l7';
|
|
import { Mapbox } from '@antv/l7-maps';
|
|
import * as React from 'react';
|
|
|
|
export default class MapboxComponent extends React.Component {
|
|
private scene: Scene;
|
|
|
|
public componentWillUnmount() {
|
|
this.scene.destroy();
|
|
}
|
|
|
|
public async componentDidMount() {
|
|
const response = await fetch(
|
|
'https://gw.alipayobjects.com/os/basement_prod/d2e0e930-fd44-4fca-8872-c1037b0fee7b.json',
|
|
);
|
|
const scene = new Scene({
|
|
id: 'map',
|
|
map: new Mapbox({
|
|
style: 'dark',
|
|
center: [110.19382669582967, 30.258134],
|
|
pitch: 0,
|
|
zoom: 3,
|
|
}),
|
|
});
|
|
this.scene = scene;
|
|
const layer = new PolygonLayer({});
|
|
|
|
layer
|
|
.source(await response.json())
|
|
.size('name', [0, 10000, 50000, 30000, 100000])
|
|
.color('name', () => {
|
|
return 'yellow';
|
|
})
|
|
.shape('fill')
|
|
.style({
|
|
opacity: 0.8,
|
|
});
|
|
scene.addLayer(layer);
|
|
}
|
|
|
|
public render() {
|
|
return (
|
|
<div
|
|
id="map"
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|