mirror of https://gitee.com/antv-l7/antv-l7
63 lines
1.3 KiB
TypeScript
63 lines
1.3 KiB
TypeScript
// @ts-ignore
|
|
import { PolygonLayer, Scene, Zoom } from '@antv/l7';
|
|
import { GaodeMap } from '@antv/l7-maps';
|
|
|
|
import * as React from 'react';
|
|
|
|
export default class ZoomComponent 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 data = await response.json();
|
|
const scene = new Scene({
|
|
id: 'map',
|
|
map: new GaodeMap({
|
|
style: 'dark',
|
|
center: [110.19382669582967, 30.258134],
|
|
pitch: 0,
|
|
minZoom: 2,
|
|
maxZoom: 6,
|
|
zoom: 3,
|
|
}),
|
|
});
|
|
this.scene = scene;
|
|
const layer = new PolygonLayer({});
|
|
|
|
layer
|
|
.source(data)
|
|
.color('#fff')
|
|
.shape('name', 'text')
|
|
.size(16)
|
|
.style({
|
|
opacity: 1.0,
|
|
});
|
|
scene.addLayer(layer);
|
|
const zoomControl = new Zoom({
|
|
position: 'bottomright',
|
|
});
|
|
scene.addControl(zoomControl);
|
|
}
|
|
|
|
public render() {
|
|
return (
|
|
<div
|
|
id="map"
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|