我正在使用Mapbox Directions,但在设置起点和目的地之后,没有找到一种方法来关闭显示路线信息的窗口。通过代码实现此目的的解决方案会有所帮助。
This is what the nagivation window looks like, without any option to close it
function buttonControl(flg,flt) {
navigator.geolocation.getCurrentPosition(position => {
currLat=position.coords.latitude;
currLon=position.coords.longitude;
mapDirections.setOrigin([currLon,currLat])
mapDirections.setDestination([flg,flt])
map.addControl(mapDirections, 'bottom-left');
});
}
理想情况下,我想在此功能中包含一个按钮,该按钮允许在单击时关闭路线信息。