如何在Mapbox-gl中制作自定义线层?

时间:2018-11-12 07:04:21

标签: mapbox mapbox-gl

enter image description here

是否可以制作一个可以带有某种方向标记(例如箭头)的自定义线层?如何为提供的geojson路由实现类似的功能?

现在,我只是用它为导入的gpx文件制作一条简单的路线:

map.addLayer({
      "id": "route",
      "type": "line",
      "source": {
          "type": "geojson",
          "data": path,
          "lineMetrics": true
      },
      "layout": {
          "line-join": "round",
          "line-cap": "round"
      },
      "paint": {
        //'line-color': 'red',
        'line-width': 8,
      },
  });

0 个答案:

没有答案