2016-01-28 10:28:44 -05:00
|
|
|
#ifndef ENGINE_GUIDANCE_STEP_MANEUVER_HPP
|
|
|
|
#define ENGINE_GUIDANCE_STEP_MANEUVER_HPP
|
|
|
|
|
|
|
|
#include "util/coordinate.hpp"
|
|
|
|
#include "extractor/turn_instructions.hpp"
|
|
|
|
|
|
|
|
namespace osrm
|
|
|
|
{
|
|
|
|
namespace engine
|
|
|
|
{
|
|
|
|
namespace guidance
|
|
|
|
{
|
|
|
|
|
|
|
|
struct StepManeuver
|
|
|
|
{
|
2016-02-23 15:23:13 -05:00
|
|
|
util::Coordinate location;
|
2016-02-22 16:09:50 -05:00
|
|
|
double bearing_before;
|
|
|
|
double bearing_after;
|
2016-01-28 10:28:44 -05:00
|
|
|
extractor::TurnInstruction instruction;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|