[routing] do not show red speed budge if we do not know the speed data

This commit is contained in:
Mikhail Gorbushin 2018-12-07 13:49:44 +03:00 committed by Vladimir Byko-Ianko
parent 061ca9f00d
commit 7397db4d9a

View file

@ -51,7 +51,7 @@ void SpeedCameraManager::OnLocationPositionChanged(location::GpsInfo const & inf
distFromCurrentPosAndClosestCam = m_closestCamera.m_distFromBeginMeters - passedDistanceMeters;
if (distFromCurrentPosAndClosestCam < -kInfluenceZoneMeters)
m_closestCamera.Invalidate();
else
else if (!m_closestCamera.NoSpeed())
m_speedLimitExceeded = IsSpeedHigh(distFromCurrentPosAndClosestCam, info.m_speedMpS, m_closestCamera);
}