我们在OSM地图中遇到了一些路由问题。有时它加载正常,有时429错误代码,有时400错误代码。
请为以下代码建议任何替代方案(在Mapbox中)。
var map = L.map('map');
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}{r}.png', { attribution: '© OpenStreetMap contributors' }).addTo(map);
L.Routing.control({
waypoints: [
L.latLng(15.0991865,98.9801498),
L.latLng(54.0810359,98.9867198)
],
routeWhileDragging: true}).addTo(map);