This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/routing/speed_camera.cpp
2018-11-30 20:04:40 +03:00

19 lines
331 B
C++

#include "routing/speed_camera.hpp"
namespace routing
{
bool SpeedCameraOnRoute::IsValid() const
{
return m_position != m2::PointD::Max();
}
void SpeedCameraOnRoute::Invalidate()
{
m_position = m2::PointD::Max();
}
bool SpeedCameraOnRoute::NoSpeed() const
{
return m_maxSpeedKmH == kNoSpeedInfo;
}
} // namespace routing