antv-l7/stories/MapAdaptor/components/MultiMapbox.tsx

105 lines
2.4 KiB
TypeScript

// @ts-ignore
import { Scene } from '@antv/l7';
import * as React from 'react';
export default class Mapbox extends React.Component {
private scene1: Scene;
private scene2: Scene;
public componentWillUnmount() {
this.scene1.destroy();
this.scene2.destroy();
}
public async componentDidMount() {
const response = await fetch(
'https://gw.alipayobjects.com/os/basement_prod/d2e0e930-fd44-4fca-8872-c1037b0fee7b.json',
);
const scene1 = new Scene({
id: 'map1',
type: 'mapbox',
style: 'mapbox://styles/mapbox/streets-v9',
center: [110.19382669582967, 30.258134],
pitch: 0,
zoom: 3,
});
this.scene1 = scene1;
const scene2 = new Scene({
id: 'map2',
type: 'mapbox',
style: 'mapbox://styles/mapbox/light-v10',
center: [110.19382669582967, 30.258134],
pitch: 0,
zoom: 3,
});
this.scene2 = scene2;
// 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);
// scene.on('loaded', () => {
// const zoomControl = new Zoom({
// position: 'bottomright',
// });
// const scaleControl = new Scale();
// const popup = new Popup({
// offsets: [0, 20],
// })
// .setLnglat({
// lng: 120.19382669582967,
// lat: 30.258134,
// })
// .setText('hello')
// .addTo(scene);
// const maker = new Marker();
// maker
// .setLnglat({
// lng: 120.19382669582967,
// lat: 30.258134,
// })
// .addTo(scene);
// scene.addControl(zoomControl);
// scene.addControl(scaleControl);
// // layer.fitBounds();
// });
}
public render() {
return (
<>
<div
id="map1"
style={{
position: 'absolute',
top: 0,
left: 0,
right: '50%',
bottom: 0,
}}
/>
<div
id="map2"
style={{
position: 'absolute',
top: 0,
left: '50%',
right: 0,
bottom: 0,
}}
/>
</>
);
}
}