mirror of https://gitee.com/antv-l7/antv-l7
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
import { Scene, PointLayer } from '@antv/l7';
|
|
import { GaodeMap } from '@antv/l7-maps';
|
|
|
|
const scene = new Scene({
|
|
id: 'map',
|
|
map: new GaodeMap({
|
|
center: [ 110, 30 ],
|
|
style: 'amap://styles/453e2f8e11603fc8f7548fe18959e9e9',
|
|
zoom: 5
|
|
})
|
|
});
|
|
const fontFamily = 'iconfont';
|
|
const fontPath = '//at.alicdn.com/t/font_2534097_fcae9o2mxbv.woff2?t=1622200439140';
|
|
scene.addFontFace(fontFamily, fontPath);
|
|
scene.addIconFont('icon1', '');
|
|
|
|
scene.on('loaded', () => {
|
|
fetch(
|
|
'https://gw.alipayobjects.com/os/bmw-prod/70408903-80db-4278-a318-461604acb2df.json'
|
|
)
|
|
.then(res => res.json())
|
|
.then(data => {
|
|
const pointLayer = new PointLayer({})
|
|
.source(data.list, {
|
|
parser: {
|
|
type: 'json',
|
|
x: 'j',
|
|
y: 'w'
|
|
}
|
|
})
|
|
.shape('icon', 'text')
|
|
.size(20)
|
|
.color('w', [ '#a6cee3', '#1f78b4', '#b2df8a', '#33a02c', '#fb9a99' ])
|
|
.style({
|
|
textAnchor: 'center', // 文本相对锚点的位置 center|left|right|top|bottom|top-left
|
|
padding: [ 0, 0 ], // 文本包围盒 padding [水平,垂直],影响碰撞检测结果,避免相邻文本靠的太近
|
|
stroke: '#ffffff', // 描边颜色
|
|
fontFamily,
|
|
iconfont: true,
|
|
textAllowOverlap: true
|
|
});
|
|
scene.addLayer(pointLayer);
|
|
});
|
|
});
|