From 4ecf03a008ec4f025e41b8302fd48ac918cf4b83 Mon Sep 17 00:00:00 2001 From: Jerry <4341884+jm355@users.noreply.github.com> Date: Mon, 20 May 2024 19:34:04 +0000 Subject: [PATCH] Always show next turn option (#7196) * Add option to always show the next turn during navigation Signed-off-by: Jeremiah Miller * Fix build errors Signed-off-by: Jeremiah Miller * Revert adding a setting to always show the next turn, set up the routing session to know when the device is in landscape position, and if it is, don't show the next turn (unless the old logic applies), but show it by default. Signed-off-by: Jeremiah Miller * Move landscape check to map framework Signed-off-by: Jeremiah Miller * Address review comments Signed-off-by: Jeremiah Miller * Always show next turn string, make the top bar take up less space in landscape mode Signed-off-by: Jeremiah Miller * Remove unecessary landscape check Signed-off-by: Jeremiah Miller * Update routing_manager.hpp Signed-off-by: Jerry <4341884+jm355@users.noreply.github.com> --------- Signed-off-by: Jeremiah Miller Signed-off-by: Jerry <4341884+jm355@users.noreply.github.com> Co-authored-by: Jeremiah --- .../main/res/layout-land/layout_nav_top.xml | 125 ++++++++++++++++++ routing/routing_session.cpp | 13 +- 2 files changed, 128 insertions(+), 10 deletions(-) create mode 100644 android/app/src/main/res/layout-land/layout_nav_top.xml diff --git a/android/app/src/main/res/layout-land/layout_nav_top.xml b/android/app/src/main/res/layout-land/layout_nav_top.xml new file mode 100644 index 0000000000..681ec9c838 --- /dev/null +++ b/android/app/src/main/res/layout-land/layout_nav_top.xml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/routing/routing_session.cpp b/routing/routing_session.cpp index ffe83356a4..e38dca26d1 100644 --- a/routing/routing_session.cpp +++ b/routing/routing_session.cpp @@ -425,26 +425,19 @@ void RoutingSession::GetRouteFollowingInfo(FollowingInfo & info) const info.m_completionPercent = GetCompletionPercent(); - double const timeToNearestTurnSec = m_route->GetCurrentTimeToNearestTurnSec(); - // Lane information and next street name. - if (distanceToTurnMeters < kShowLanesMinDistInMeters || timeToNearestTurnSec < 60.0) + info.m_displayedStreetName = info.m_targetName; + info.m_lanes.clear(); + if (distanceToTurnMeters < kShowLanesMinDistInMeters || m_route->GetCurrentTimeToNearestTurnSec() < 60.0) { - info.m_displayedStreetName = info.m_targetName; // There are two nested loops below. Outer one is for lanes and inner one (ctor of // SingleLaneInfo) is // for each lane's directions. The size of turn.m_lanes is relatively small. Less than 10 in // most cases. - info.m_lanes.clear(); info.m_lanes.reserve(turn.m_lanes.size()); for (size_t j = 0; j < turn.m_lanes.size(); ++j) info.m_lanes.emplace_back(turn.m_lanes[j]); } - else - { - info.m_displayedStreetName = ""; - info.m_lanes.clear(); - } // Pedestrian info. info.m_pedestrianTurn = (distanceToTurnMeters < kShowPedestrianTurnInMeters)