type: "jsonp",
elevation: false,
instructions: true,
- point: points.map(function (p) { return p.lat + "," + p.lng })
+ point: points.map(function (p) { return p.lat + "," + p.lng; })
},
traditional: true,
dataType: "jsonp",
]); // TODO does graphhopper map instructions onto line indices?
}
- callback(null, {
+ callback(false, {
line: line,
steps: steps,
distance: path.distance,
time: path.time / 1000
});
+ },
+ error: function () {
+ callback(true);
}
});
}