| 867 | } |
| 868 | |
| 869 | void RoutingManager::FollowRoute() |
| 870 | { |
| 871 | if (!m_routingSession.EnableFollowMode()) |
| 872 | return; |
| 873 | |
| 874 | m_transitReadManager->BlockTransitSchemeMode(true /* isBlocked */); |
| 875 | |
| 876 | m_delegate.OnRouteFollow(m_currentRouterType); |
| 877 | |
| 878 | m_bmManager->GetEditSession().ClearGroup(UserMark::Type::ROAD_WARNING); |
| 879 | HideRoutePoint(RouteMarkType::Start); |
| 880 | SetPointsFollowingMode(true /* enabled */); |
| 881 | |
| 882 | CancelRecommendation(Recommendation::RebuildAfterPointsLoading); |
| 883 | } |
| 884 | |
| 885 | void RoutingManager::CloseRouting(bool removeRoutePoints) |
| 886 | { |
no test coverage detected