forked from organicmaps/organicmaps
[routing] do not show red speed budge if we do not know the speed data
This commit is contained in:
parent
061ca9f00d
commit
7397db4d9a
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue