我在获取新的 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);
我尝试定义路线,但不工作。现在代码是正确的。