地図上の任意の場所をクリックすると、地図上に原点を設定して運転目的地を設定するアプリ内にMapbox GL方向プラグインが使用されています。私は今、大規模な研究がそうする方法を理解できない場合でも、左上の検索元/宛先ボックスを削除しようとしています。どうすればいいか教えてください。ありがとう。私は以下の私のアプリで使用していますMapbox GLの方向プラグインの隠し検索元の宛先ボックス
コード:
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/streets-v8',
center: [userCoordinates.coords.longitude, userCoordinates.coords.latitude],
zoom: 15
});
var directions = new mapboxgl.Directions({
unit: 'metric',
profile: 'driving'
});
map.addControl(directions);
directions.setOrigin([userCoordinates.coords.longitude, userCoordinates.coords.latitude]);
map.on('click', function(e) {
var features = map.queryRenderedFeatures(e.point, { layers: ['gsLayer'] });
if (!features.length) {
return;
}
var feature = features[0];
directions.setDestination([feature.geometry.coordinates[0], feature.geometry.coordinates[1]]);
});
を。単にソースと宛先の間に描かれたルートを削除します – MKM