2019-11-25 15:27:56 +08:00
|
|
|
import { PointLayer, Scene } from '@antv/l7';
|
2019-12-17 11:14:31 +08:00
|
|
|
import { GaodeMap, Mapbox } from '@antv/l7-maps';
|
2019-11-21 13:44:32 +08:00
|
|
|
import * as React from 'react';
|
|
|
|
export default class PointImage extends React.Component {
|
2019-11-25 15:27:56 +08:00
|
|
|
// @ts-ignore
|
2019-11-21 13:44:32 +08:00
|
|
|
private scene: Scene;
|
|
|
|
|
|
|
|
public componentWillUnmount() {
|
|
|
|
this.scene.destroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
public async componentDidMount() {
|
|
|
|
const response = await fetch(
|
|
|
|
'https://gw.alipayobjects.com/os/basement_prod/893d1d5f-11d9-45f3-8322-ee9140d288ae.json',
|
|
|
|
);
|
|
|
|
const scene = new Scene({
|
|
|
|
id: 'map',
|
2019-12-17 11:14:31 +08:00
|
|
|
map: new Mapbox({
|
2019-11-26 17:51:29 +08:00
|
|
|
center: [121.4, 31.258134],
|
|
|
|
zoom: 15,
|
|
|
|
pitch: 0,
|
|
|
|
style: 'dark',
|
|
|
|
}),
|
2019-11-21 13:44:32 +08:00
|
|
|
});
|
2019-12-17 11:14:31 +08:00
|
|
|
this.scene = scene;
|
2019-11-21 13:44:32 +08:00
|
|
|
scene.addImage(
|
|
|
|
'00',
|
|
|
|
'https://gw.alipayobjects.com/mdn/antv_site/afts/img/A*Rq6tQ5b4_JMAAAAAAAAAAABkARQnAQ',
|
|
|
|
);
|
|
|
|
scene.addImage(
|
|
|
|
'01',
|
|
|
|
'https://gw.alipayobjects.com/mdn/antv_site/afts/img/A*0D0SQ6AgkRMAAAAAAAAAAABkARQnAQ',
|
|
|
|
);
|
|
|
|
scene.addImage(
|
|
|
|
'02',
|
|
|
|
'https://gw.alipayobjects.com/mdn/antv_site/afts/img/A*o16fSIvcKdUAAAAAAAAAAABkARQnAQ',
|
|
|
|
);
|
2020-02-17 22:47:33 +08:00
|
|
|
let i = 0;
|
|
|
|
const data = await response.json();
|
|
|
|
while (i < 50) {
|
|
|
|
const imageLayer = new PointLayer()
|
|
|
|
.source(data, {
|
|
|
|
parser: {
|
|
|
|
type: 'json',
|
|
|
|
x: 'longitude',
|
|
|
|
y: 'latitude',
|
|
|
|
},
|
|
|
|
})
|
2020-02-20 00:03:00 +08:00
|
|
|
.shape('triangle')
|
2020-02-17 22:47:33 +08:00
|
|
|
.color('red')
|
2020-02-20 00:03:00 +08:00
|
|
|
.active(true)
|
2020-02-17 22:47:33 +08:00
|
|
|
.size(20);
|
|
|
|
scene.addLayer(imageLayer);
|
|
|
|
i++;
|
|
|
|
}
|
2019-11-21 13:44:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public render() {
|
|
|
|
return (
|
|
|
|
<div
|
|
|
|
id="map"
|
|
|
|
style={{
|
|
|
|
position: 'absolute',
|
|
|
|
top: 0,
|
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
bottom: 0,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|