mirror of https://gitee.com/antv-l7/antv-l7
34 lines
719 B
JavaScript
34 lines
719 B
JavaScript
import { Scene, PointLayer } from '@antv/l7';
|
|
import { GaodeMap } from '@antv/l7-maps';
|
|
|
|
const scene = new Scene({
|
|
id: 'map',
|
|
map: new GaodeMap({
|
|
style: 'dark',
|
|
center: [ 121.417463, 31.215175 ],
|
|
pitch: 0,
|
|
zoom: 11
|
|
})
|
|
});
|
|
scene.on('loaded', () => {
|
|
fetch('https://gw.alipayobjects.com/os/rmsportal/BElVQFEFvpAKzddxFZxJ.txt')
|
|
.then(res => res.text())
|
|
.then(data => {
|
|
const pointLayer = new PointLayer({})
|
|
.source(data, {
|
|
parser: {
|
|
type: 'csv',
|
|
y: 'lat',
|
|
x: 'lng'
|
|
}
|
|
})
|
|
.size(0.5)
|
|
.color('#080298')
|
|
.style({
|
|
opacity: 1
|
|
});
|
|
|
|
scene.addLayer(pointLayer);
|
|
});
|
|
});
|