Implement support for car/names.feature

This commit is contained in:
Dennis
2024-06-13 17:02:28 +02:00
parent d985459696
commit 37f5780472
16 changed files with 442 additions and 152 deletions
+2
View File
@@ -29,6 +29,8 @@ module.exports = function () {
var params = this.paramsToString(parameters);
this.query = baseUri + (params.length ? '/' + params : '');
console.log(this.query);
request(this.query, (err, res, body) => {
if (err && err.code === 'ECONNREFUSED') {
return cb(new Error('*** osrm-routed is not running.'));