antv-l7/examples/amapPlugin/bus/demo/satellite.js

17 lines
304 B
JavaScript
Raw Normal View History

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());
});