mirror of https://gitee.com/antv-l7/antv-l7
62 lines
1.3 KiB
TypeScript
62 lines
1.3 KiB
TypeScript
|
import { PointImageLayer } from '@l7/layers';
|
||
|
import { Scene } from '@l7/scene';
|
||
|
import * as React from 'react';
|
||
|
import data from '../data/data.json';
|
||
|
export default class PointImage extends React.Component {
|
||
|
private scene: Scene;
|
||
|
|
||
|
public componentWillUnmount() {
|
||
|
this.scene.destroy();
|
||
|
}
|
||
|
|
||
|
public componentDidMount() {
|
||
|
const scene = new Scene({
|
||
|
center: [120.19382669582967, 30.258134],
|
||
|
id: 'map',
|
||
|
pitch: 0,
|
||
|
type: 'mapbox',
|
||
|
style: 'mapbox://styles/mapbox/streets-v9',
|
||
|
zoom: 1,
|
||
|
});
|
||
|
const pointLayer = new PointImageLayer({});
|
||
|
const p1 = {
|
||
|
type: 'FeatureCollection',
|
||
|
features: [
|
||
|
{
|
||
|
type: 'Feature',
|
||
|
properties: {},
|
||
|
geometry: {
|
||
|
type: 'Point',
|
||
|
coordinates: [83.671875, 44.84029065139799],
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
};
|
||
|
scene.addImage(
|
||
|
'00',
|
||
|
'https://gw.alipayobjects.com/mdn/antv_site/afts/img/A*kzTMQqS2QdUAAAAAAAAAAABkARQnAQ',
|
||
|
);
|
||
|
pointLayer
|
||
|
.source(data)
|
||
|
.shape('00')
|
||
|
.size(30);
|
||
|
scene.addLayer(pointLayer);
|
||
|
scene.render();
|
||
|
}
|
||
|
|
||
|
public render() {
|
||
|
return (
|
||
|
<div
|
||
|
id="map"
|
||
|
style={{
|
||
|
position: 'absolute',
|
||
|
top: 0,
|
||
|
left: 0,
|
||
|
right: 0,
|
||
|
bottom: 0,
|
||
|
}}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
}
|