| 1224 | } |
| 1225 | |
| 1226 | bool RoutingManager::DisableFollowMode() |
| 1227 | { |
| 1228 | bool const disabled = m_routingSession.DisableFollowMode(); |
| 1229 | if (disabled) |
| 1230 | { |
| 1231 | m_transitReadManager->BlockTransitSchemeMode(false /* isBlocked */); |
| 1232 | m_drapeEngine.SafeCall(&df::DrapeEngine::DeactivateRouteFollowing); |
| 1233 | } |
| 1234 | return disabled; |
| 1235 | } |
| 1236 | |
| 1237 | void RoutingManager::CheckLocationForRouting(location::GpsInfo const & info) |
| 1238 | { |
no test coverage detected