add steps to route response

This commit is contained in:
sbriat
2023-09-19 14:30:56 +02:00
parent 1f1502a623
commit 7cac8cbef9
5 changed files with 34 additions and 3 deletions

View File

@@ -22,6 +22,7 @@ export class RouteMapper
response.backAzimuth = Math.round(entity.getProps().backAzimuth);
response.distanceAzimuth = Math.round(entity.getProps().distanceAzimuth);
response.points = entity.getProps().points;
response.steps = entity.getProps().steps;
return response;
};
}