【解决办法】矢量瓦片样式和数据是分离的,这个现象就是分离出来的样式不支持,需要在前端制作样式动态实现,参考map.addLayer({
'id': 'line-with-arrows',
'type': 'line',
'source': 'your-source',
'layout': {
'line-cap': 'round',
'line-join': 'round',
'line-pattern': 'arrow-icon', // 替换为你的箭头图标 ID
},
'paint': {
'line-color': '#888',
'line-width': 4,
}
});