0

MapLibre用来创建一个背景图如下:

map.on('load', function() {
    map.addSource('lines', {
        type: 'geojson',
        data: data
    });

   map.addLayer({
        'id': 'lines',
        'type': 'fill',
        'source': 'lines',
        'layout': {},
        'paint': {
        'fill-color': '#4682B4',
        'fill-opacity': 0.8,
        }
    });
   map.setPaintProperty('lines', 'fill-color', ['get', 'color'])
})

我如何才能将我的链接与来自 API 的数据联系起来?或者如何在 addSource 中添加这些数据

4

0 回答 0