新しい OSRM の取得に問題があります。overview=full を使用してリクエストを送信できません。助けてもらえますか。
私のコード:
var map = L.map('map');
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png', {
attribution: '© <a href="http://osm.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
var control = L.Routing.control(L.extend(window.lrmConfig, {
//router: routera
waypoints: [
L.latLng(52.4, 11.44),
L.latLng(52.92, 11.65)
],
geocoder: L.Control.Geocoder.nominatim(),
routeWhileDragging: true,
reverseWaypoints: false,
showAlternatives: true,
altLineOptions: {
styles: [
{color: 'black', opacity: 0.15, weight: 9},
{color: 'white', opacity: 0.8, weight: 6},
{color: 'blue', opacity: 0.5, weight: 2}
]
}
})).addTo(map);
ルートを定義しようとしましたが、うまくいきません。これでコードは正しいです。