Implement geometry comparison

This commit is contained in:
Dennis
2024-06-28 13:04:04 +02:00
parent 85eb7a9383
commit 772f9ccc21
6 changed files with 169 additions and 44 deletions
-2
View File
@@ -29,8 +29,6 @@ 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.'));