mirror of https://gitee.com/antv-l7/antv-l7
27 lines
594 B
JavaScript
27 lines
594 B
JavaScript
import { Scene, LineLayer } from '@antv/l7';
|
|
import { Mapbox } from '@antv/l7-maps';
|
|
|
|
const scene = new Scene({
|
|
id: 'map',
|
|
map: new Mapbox({
|
|
center: [ 116.3956, 39.9392 ],
|
|
pitch: 0,
|
|
zoom: 10,
|
|
rotation: 0,
|
|
style: 'light'
|
|
})
|
|
});
|
|
|
|
fetch(
|
|
'https://gw.alipayobjects.com/os/basement_prod/0d2f0113-f48b-4db9-8adc-a3937243d5a3.json'
|
|
)
|
|
.then(res => res.json())
|
|
.then(data => {
|
|
const layer = new LineLayer({})
|
|
.source(data)
|
|
.size(1.5)
|
|
.shape('line')
|
|
.color('标准名称', [ '#5B8FF9', '#5CCEA1', '#5D7092' ]);
|
|
scene.addLayer(layer);
|
|
});
|