Always show next turn option #7196
No reviewers
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
1 participant
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#7196
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "always_show_next_turn_option"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Implements #4171 for android, and potentially #849
I tried to set it up for iOS, but I don't have a mac so I don't know if I did it right. I can say for sure that alwaysShowNextTurnCell needs to be uncommented.
I also haven't been able to test it, app:compileFdroidDebugAndroidTestJavaWithJavac fails when I try to Build APKs in android studio. It built when I hit the debug button, but the emulator didn't work, and the apk it made for that wouldn't install on my phone
edit: I had to export
JAVA_HOME=/opt/android-studio/jbr
and then./gradlew assembleFdroidBeta -Parm64
worked.Is there an easier way to check that the map is in landscape mode using the Framework? E.g. compare the dimensions of the map screen?
CC @vng
There are some spots in the code that compared dimensions, and some that used the system. Either way, I'm pretty sure that data will have to be passed through the routing manager to the routingsession, so the logic should just need to be changed at the top.
It's worth noting, the orientation needs to be checked every time the orientation changes, so to me it made sense to pass that data down so we can update it in the onOrientationChange functions as well as when the app starts
Please check if
void Framework::OnViewportChanged
is called on landscape/portrait rotation, and if yes, then landscape flag can be passed from there.Ooh nice, yeah putting it there (and removing it from the other spots) updates it correctly. I'll commit the change shortly
Are you sure that the logic is not broken? Did you test your changes?
Is this function needed?
m_routingManager.RoutingSession().SetIsLandscape()
should be enough, right?Please follow the convention.
@ -432,1 +429,4 @@
info.m_displayedStreetName = info.m_targetName;
info.m_lanes.clear();
if (distanceToTurnMeters < kShowLanesMinDistInMeters || m_route->GetCurrentTimeToNearestTurnSec() < 60.0)
{
No need to modify variable twice.
What happens if m_isLandscape is false?
Remove?
@ -0,0 +39,4 @@
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/street_frame"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginTop="-40dp"
Should it be hard-coded or made relative in some other way? How was this value determined? Will it work with a very large font set in system settings?
@ -0,0 +39,4 @@
android:layout_height="wrap_content"
app:layout_constraintTop_toBottomOf="@id/street_frame"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginTop="-40dp"
This file was just copied from
656686cbb4/android/app/src/main/res/layout/layout_nav_top.xml
, there are only three lines that are different, and they're in the first FrameLayout section:I don't remember the exact reason I changed them, I think it was based on some of the requests to make landscape look different to portrait mode. Personally I think changes to landscape might fit better in a different PR (and would be better off being done by someone who understands the android layout xml better), but that was what was requested so I figured out how to make it look different
Edit: Better diff format
Ok, thanks, let's move on and test it live in betas and then decide if it's ok and how we can improve.