无法隐藏配置文件 ui(交通、驾驶、步行、骑自行车)
Unable to hide profile ui (Traffic, Driving, Walking, Cycling)
我找不到从地图框方向隐藏/删除配置文件 ui(交通、驾驶、步行、骑自行车)的选项。有没有可用的选项?
配置文件 ui 部分区域的屏幕截图。这是我需要隐藏的部分,Click here to view the profile ui section pic of mapbox directions
我实现的代码,
enableMapboxDirection() {
mapboxgl.accessToken = 'pk.eyJ1Ijoid2FsYWEtbWFwIiwiYSI6ImNqN2VuYmluZjBwZ2UzMnBqM20wNnJieWkifQ.2pKH-XbfOZuXzX9pEqGBjw';
var directions = new MapboxDirections({
accessToken: mapboxgl.accessToken,
controls: {
instructions: false,
},
unit: 'metric',
profile: 'driving',
});
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/streets-v9'
});
map.on('load', function() {
directions.on('route', function(e) {
console.log(e); // Logs the current route shown in the interface.
console.log('Your Destination ',directions.getDestination());
console.log('Your Origin ',directions.getOrigin());
});
});
map.addControl(directions, 'top-left');
}
您可以使用 controls.profileSwitcher 参数隐藏配置文件 UI。这个选项是几天前mapbox团队添加的。
您可以隐藏个人资料 UI,方法是添加以下内容:
controls: {
profileSwitcher: false
}
我找不到从地图框方向隐藏/删除配置文件 ui(交通、驾驶、步行、骑自行车)的选项。有没有可用的选项?
配置文件 ui 部分区域的屏幕截图。这是我需要隐藏的部分,Click here to view the profile ui section pic of mapbox directions
我实现的代码,
enableMapboxDirection() {
mapboxgl.accessToken = 'pk.eyJ1Ijoid2FsYWEtbWFwIiwiYSI6ImNqN2VuYmluZjBwZ2UzMnBqM20wNnJieWkifQ.2pKH-XbfOZuXzX9pEqGBjw';
var directions = new MapboxDirections({
accessToken: mapboxgl.accessToken,
controls: {
instructions: false,
},
unit: 'metric',
profile: 'driving',
});
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/streets-v9'
});
map.on('load', function() {
directions.on('route', function(e) {
console.log(e); // Logs the current route shown in the interface.
console.log('Your Destination ',directions.getDestination());
console.log('Your Origin ',directions.getOrigin());
});
});
map.addControl(directions, 'top-left');
}
您可以使用 controls.profileSwitcher 参数隐藏配置文件 UI。这个选项是几天前mapbox团队添加的。
您可以隐藏个人资料 UI,方法是添加以下内容:
controls: {
profileSwitcher: false
}