2016-01-28 10:28:44 -05:00
|
|
|
#ifndef ENGINE_GUIDANCE_ASSEMBLE_OVERVIEW_HPP
|
|
|
|
#define ENGINE_GUIDANCE_ASSEMBLE_OVERVIEW_HPP
|
|
|
|
|
|
|
|
#include "engine/guidance/leg_geometry.hpp"
|
|
|
|
|
2016-02-23 15:23:13 -05:00
|
|
|
#include "util/coordinate.hpp"
|
|
|
|
|
2016-01-28 10:28:44 -05:00
|
|
|
#include <vector>
|
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::engine::guidance
|
2016-01-28 10:28:44 -05:00
|
|
|
{
|
|
|
|
|
2016-02-23 15:23:13 -05:00
|
|
|
std::vector<util::Coordinate> assembleOverview(const std::vector<LegGeometry> &leg_geometries,
|
|
|
|
const bool use_simplification);
|
2016-01-28 10:28:44 -05:00
|
|
|
|
2022-12-20 12:00:11 -05:00
|
|
|
} // namespace osrm::engine::guidance
|
2016-01-28 10:28:44 -05:00
|
|
|
|
|
|
|
#endif
|