#include "openlr/openlr_model.hpp" #include "geometry/mercator.hpp" namespace openlr { // LinearSegment ----------------------------------------------------------------------------------- std::vector LinearSegment::GetMercatorPoints() const { std::vector points; for (auto const & point : m_locationReference.m_points) points.push_back(MercatorBounds::FromLatLon(point.m_latLon)); return points; } } // namespace openlr