我正在使用mapbox-gl-directions,版本:4.0.2
。我想排除通行费,渡轮或高速公路。这是一个文档:API,它说您可以传递exclude
参数:但是,尽管像这样通过它,却不起作用:
new MapboxDirections({
accessToken: this.accessToken,
unit: 'metric',
profile: 'mapbox/driving',
flyTo: false,
styles,
controls: {
inputs: false,
instructions: false,
profileSwitcher: false
},
exclude: 'ferry'
});
有人知道如何通过吗?
似乎mapbox-gl-directions插件不支持exclude=
。您完成了this issue的正确选择。