Files
comaps/libs/routing/latlon_with_altitude.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

31 lines
818 B
C++

#pragma once
#include "geometry/latlon.hpp"
#include "geometry/point_with_altitude.hpp"
#include <string>
namespace routing
{
class LatLonWithAltitude
{
public:
LatLonWithAltitude() = default;
LatLonWithAltitude(ms::LatLon const & latlon, geometry::Altitude altitude) : m_latlon(latlon), m_altitude(altitude) {}
bool operator==(LatLonWithAltitude const & rhs) const;
bool operator<(LatLonWithAltitude const & rhs) const;
ms::LatLon const & GetLatLon() const { return m_latlon; }
geometry::Altitude GetAltitude() const { return m_altitude; }
geometry::PointWithAltitude ToPointWithAltitude() const;
private:
ms::LatLon m_latlon;
geometry::Altitude m_altitude = geometry::kDefaultAltitudeMeters;
};
std::string DebugPrint(LatLonWithAltitude const & latLonWithAltitude);
} // namespace routing