25 lines
655 B
C++
25 lines
655 B
C++
|
#ifndef OSRM_ENGINE_GUIDANCE_LANE_PROCESSING_HPP_
|
||
|
#define OSRM_ENGINE_GUIDANCE_LANE_PROCESSING_HPP_
|
||
|
|
||
|
#include <vector>
|
||
|
|
||
|
#include "engine/guidance/route_step.hpp"
|
||
|
|
||
|
namespace osrm
|
||
|
{
|
||
|
namespace engine
|
||
|
{
|
||
|
namespace guidance
|
||
|
{
|
||
|
|
||
|
// Constrains lanes for multi-hop situations where lane changes depend on earlier ones.
|
||
|
// Instead of forcing users to change lanes rapidly in a short amount of time,
|
||
|
// we anticipate lane changes emitting only matching lanes early on.
|
||
|
std::vector<RouteStep> anticipateLaneChange(std::vector<RouteStep> steps);
|
||
|
|
||
|
} // namespace guidance
|
||
|
} // namespace engine
|
||
|
} // namespace osrm
|
||
|
|
||
|
#endif /* OSRM_ENGINE_GUIDANCE_LANE_PROCESSING_HPP_ */
|