我将使用我的本地osrm服务器,以便在基于mapbox GL的地图中进行路由。在 mapbox-gl-directions.js 中有一个服务器部分:
var initialState = {
api: 'https://api.mapbox.com/directions/v5/',
profile: 'driving-traffic',
unit: 'imperial',
proximity: false,
styles: [],
controls: {
inputs: true,
instructions: true
},
我想将 api 替换为' localhost:5000 / route / v1 /' 但它不起作用。 感谢。
答案 0 :(得分:2)
行。应该在 mapbox-gl-directions.js 中修改两行。
首先:改变
api: 'https://api.mapbox.com/directions/v5/',
到
api: 'localhost:5000/route/v1/driving/',
第二:改变
request.open('GET', api + 'mapbox/' + profile + '/' + query + '.json?' + options.join('&'), true);
到
request.open('GET', api + query + '?alternatives=true&steps=true&geometries=polyline&overview=full&annotations=true', true);