mirror of https://gitee.com/antv-l7/antv-l7
84 lines
1.8 KiB
TypeScript
84 lines
1.8 KiB
TypeScript
import { Scene } from '@antv/l7';
|
|
import { WorldLayer } from '@antv/l7-district';
|
|
import { GaodeMap, Mapbox } from '@antv/l7-maps';
|
|
import * as React from 'react';
|
|
|
|
export default class Country extends React.Component {
|
|
// @ts-ignore
|
|
private scene: Scene;
|
|
|
|
public componentWillUnmount() {
|
|
this.scene.destroy();
|
|
}
|
|
|
|
public async componentDidMount() {
|
|
const scene = new Scene({
|
|
id: 'map',
|
|
map: new Mapbox({
|
|
center: [116.2825, 39.9],
|
|
pitch: 0,
|
|
style: 'blank',
|
|
zoom: 0,
|
|
minZoom: 0,
|
|
maxZoom: 10,
|
|
}),
|
|
});
|
|
scene.on('loaded', () => {
|
|
const Layer = new WorldLayer(scene, {
|
|
data: [],
|
|
geoDataLevel: 2,
|
|
joinBy: ['SOC', 'SOC'],
|
|
fill: {
|
|
color: {
|
|
field: 'NAME_CHN',
|
|
values: [
|
|
'#feedde',
|
|
'#fdd0a2',
|
|
'#fdae6b',
|
|
'#fd8d3c',
|
|
'#e6550d',
|
|
'#a63603',
|
|
],
|
|
},
|
|
},
|
|
stroke: '#ccc',
|
|
label: {
|
|
enable: true,
|
|
textAllowOverlap: false,
|
|
field: 'NAME_ENG',
|
|
padding: [5, 5],
|
|
},
|
|
popup: {
|
|
enable: true,
|
|
openTriggerEvent: 'click',
|
|
Html: (props: any) => {
|
|
return `<span><button onclick='alert(11111)'>点击</button>${props.NAME_CHN +
|
|
':' +
|
|
props.value}</span>`;
|
|
},
|
|
},
|
|
});
|
|
console.time('layer');
|
|
Layer.on('loaded', () => {
|
|
console.timeEnd('layer');
|
|
});
|
|
});
|
|
this.scene = scene;
|
|
}
|
|
|
|
public render() {
|
|
return (
|
|
<div
|
|
id="map"
|
|
style={{
|
|
position: 'absolute',
|
|
top: 0,
|
|
left: 0,
|
|
right: 0,
|
|
bottom: 0,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|