mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 05:43:37 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
33
libs/routing/latlon_with_altitude.hpp
Normal file
33
libs/routing/latlon_with_altitude.hpp
Normal file
@@ -0,0 +1,33 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user