Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
30
libs/routing/latlon_with_altitude.hpp
Normal file
30
libs/routing/latlon_with_altitude.hpp
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue