Add support for the 'straight' maneuver direction (#4995)

Add support for the 'straight' maneuver direction
This commit is contained in:
Daniel Patterson
2018-04-03 17:20:18 -07:00
committed by GitHub
parent b5a4ffed96
commit 649d4ee512
3 changed files with 7 additions and 0 deletions
+4
View File
@@ -844,6 +844,10 @@ void ExtractionContainers::PrepareManeuverOverrides()
{
result.second = guidance::DirectionModifier::Right;
}
else if (direction_string == "straight")
{
result.second = guidance::DirectionModifier::Straight;
}
return result;
};