mirror of https://gitee.com/antv-l7/antv-l7
17 lines
304 B
JavaScript
17 lines
304 B
JavaScript
|
import { Scene } from '@antv/l7';
|
||
|
import { GaodeMap } from '@antv/l7-maps';
|
||
|
|
||
|
const scene = new Scene({
|
||
|
id: 'map',
|
||
|
map: new GaodeMap({
|
||
|
center: [105, 30],
|
||
|
pitch: 0,
|
||
|
zoom: 2,
|
||
|
})
|
||
|
});
|
||
|
|
||
|
|
||
|
scene.on('loaded', () => {
|
||
|
scene.getMapService().map.add(new window.AMap.TileLayer.Satellite());
|
||
|
});
|