mirror of https://gitee.com/antv-l7/antv-l7
64 lines
1.4 KiB
JavaScript
64 lines
1.4 KiB
JavaScript
import { Scene, CityBuildingLayer, LineLayer } from '@antv/l7';
|
|
import { GaodeMap } from '@antv/l7-maps';
|
|
|
|
const scene = new Scene({
|
|
id: 'map',
|
|
map: new GaodeMap({
|
|
style: 'dark',
|
|
center: [ 120.173104, 30.244072 ],
|
|
pitch: 70.41138037735848,
|
|
zoom: 17.18,
|
|
rotation: 2.24, // 358.7459759480504
|
|
minZoom: 14
|
|
})
|
|
});
|
|
|
|
scene.on('loaded', () => {
|
|
fetch(
|
|
'https://gw.alipayobjects.com/os/rmsportal/ggFwDClGjjvpSMBIrcEx.json'
|
|
)
|
|
.then(res => res.json())
|
|
.then(data => {
|
|
const layer = new CityBuildingLayer(
|
|
{
|
|
zIndex: 0
|
|
}
|
|
);
|
|
layer
|
|
.source(data)
|
|
.size('floor', [ 100, 500 ])
|
|
.color('rgba(242,246,250,0.5)')
|
|
.animate({
|
|
enable: true
|
|
})
|
|
.style({
|
|
opacity: 1.0,
|
|
baseColor: 'rgba(36,16,63,0.3)',
|
|
windowColor: '#0e0220',
|
|
brightColor: '#08faee'
|
|
});
|
|
scene.addLayer(layer);
|
|
});
|
|
fetch(
|
|
'https://gw.alipayobjects.com/os/basement_prod/40ef2173-df66-4154-a8c0-785e93a5f18e.json'
|
|
)
|
|
.then(res => res.json())
|
|
.then(data => {
|
|
const layer = new LineLayer({
|
|
zIndex: 0
|
|
})
|
|
.source(data)
|
|
.size(1)
|
|
.shape('line')
|
|
.color('#ff893a')
|
|
.animate({
|
|
interval: 1, // 间隔
|
|
duration: 2, // 持续时间,延时
|
|
trailLength: 2 // 流线长度
|
|
});
|
|
scene.addLayer(layer);
|
|
});
|
|
|
|
});
|
|
|