mirror of https://gitee.com/antv-l7/antv-l7
51 lines
1.0 KiB
TypeScript
51 lines
1.0 KiB
TypeScript
|
import { ImageLayer } from '@l7/layers';
|
||
|
import { Scene } from '@l7/scene';
|
||
|
import * as React from 'react';
|
||
|
|
||
|
export default class ImageLayerDemo extends React.Component {
|
||
|
private scene: Scene;
|
||
|
|
||
|
public componentWillUnmount() {
|
||
|
this.scene.destroy();
|
||
|
}
|
||
|
|
||
|
public componentDidMount() {
|
||
|
const scene = new Scene({
|
||
|
center: [121.2680, 30.3628],
|
||
|
id: 'map',
|
||
|
pitch: 0,
|
||
|
type: 'mapbox',
|
||
|
style: 'mapbox://styles/mapbox/streets-v9',
|
||
|
zoom: 10,
|
||
|
});
|
||
|
const layer = new ImageLayer({});
|
||
|
layer.source(
|
||
|
'https://gw.alipayobjects.com/zos/rmsportal/FnHFeFklTzKDdUESRNDv.jpg',
|
||
|
{
|
||
|
parser: {
|
||
|
type: 'image',
|
||
|
extent: [121.168, 30.2828, 121.384, 30.4219],
|
||
|
},
|
||
|
},
|
||
|
);
|
||
|
scene.addLayer(layer);
|
||
|
console.log(layer);
|
||
|
scene.render();
|
||
|
}
|
||
|
|
||
|
public render() {
|
||
|
return (
|
||
|
<div
|
||
|
id="map"
|
||
|
style={{
|
||
|
position: 'absolute',
|
||
|
top: 0,
|
||
|
left: 0,
|
||
|
right: 0,
|
||
|
bottom: 0,
|
||
|
}}
|
||
|
/>
|
||
|
);
|
||
|
}
|
||
|
}
|