Helicopter/Ruler routing #5381
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
2 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#5381
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "helicopter-navigation-v2"
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?
Updates for PR #4917
See #5465 #1452 #5431
New routing type is added. In this routing only straight lines connect stop points:
Also new button is added in route planning mode (Android only). Button "Next" appends new stop point to the route. It works for all route types:

Strings changes
String "Distance" (
"placepage_distance"
) previosly was available only for iOS. Now it's used at Android too.Known issues:
Issue 1:
Line is drawn below buildings:Fixed:Issue 2:
Lack of unit tests.
Issue 3:
Empty space in iOS route info on the bottom pannel if only 2 points in the helicopter route.iOS layout fixed.Usability issue:
Helicopter router is intended for two use cases: simple distance measurement (ruller), and direct line route planing (usefull in forests, waterways, wilds). Ruller case UX should be quick: user get distance between two points. While direct line planing should work more like pedestrian/bike/car route planing. Question: How to combine two cases in a single UX?
TODO:
Update 2023-06-30
Changed Android and iOS route details UI. Android uses the same UI as Transit navigation.
Helicopter route line now draws on top of 3D buildings. Other routes are untouched.
Update 2023-07-02
[Android]
changed "Next" button icon:Update 2023-08-04
[iOS]
Changed helicopter route info. Using transit route UI (as we do in Android).Update 2023-08-21
[Android]
,[iOS]
Changed icon to ruler.Ruler/Helicopter navigation is extended with a single tap.
[Android]
Removed "Next" button from UI.nit: = mercator::FromLatLon(lat, lon)
nit: Better to keep our common braces style here and below. Don't use braces for one-line expressions.
https://symbl.cc/en/unicode/blocks/enclosed-alphanumerics/
They are continuous, so can do a trick up to 20:
marker = FromCode((U+2460) + i - 1);
nit: Put this long comment above the line.
A bit strange, but ok for now ..
routeSegments.emplace_back(segment, turn, junction, roadNameInfo);
size_t const count = points.size();
ASSERT(count > 0, ());
And use it below.
Even better to avoid visual syntax overhead:
And what about performance? Would compiler be able to inline lambda here?
Yes
In commit #7566d8f I increased end index by 1 because in route.cpp:447 we have:
It's better to put this comment into the code.
@vng PTAL
Fixed
Not relevant. Route details UI is inherited from transit info.
Fixed
Fixed
Fixed
Fixed using your code.
Fixed using your code
Introduced variable.
Added comment
❌ Pixel 6 - Android 13
App crashed when i rotate device after used helicopter navigation
Don't understand why it is here?
The difference here is only in call order and supporting Framebuffers
Since we are in cpp world here, it can be simplified:
Also use ToPointWA
Add comment what do we want to achieve here?
Seems like m_headFakeDistance, m_tailFakeDistance are not supposed to modify outside.
They are for CreateDrapeSubroute internals.
The only difference in this if-else block is order of drawing. And to draw route on top of 3D buildings I force
else
block for helicopter route type.Is there any better solution?
When I draw straight line with

route_dash.fsh.glsl
Line tail color is changed to
u_fakeColor
after some distance. Previosly there was no such long lines. So I increased this distance to 90° in order to not change shader code:Fixed!
Fixed using your proposal.
An idea came to my mind. Maybe I should change
u_fakeColor
value for Helicopter route?This color is loaded in
RouteRenderer::RenderSubroute(...)
method:Is RouteRenderer better place to fix the color?
@rokuz any hints on how to implement it properly?
@strump In the longer term it may be better to write a separate shader/style for the helicopter navigation. Maybe a thin line with text drawn in it like ---50 km--- would be enough.
Ah, I see ..
m_headFakeDistance and m_tailFakeDistance are about drawing grey (fake) lines when entering/leaving the normal route.
In helicopter router we don't need it, so better to set:
Like it is done in CreateDrapeSubroute. Or if we call CreateDrapeSubroute, should debug why route parts are marked as fake.
Well, if we want a route line to be on top of everything (other routes don't overlap buildings?), it is an acceptable solution for now.
@vng fixed
m_tailFakeDistance
in commit 4825fdeI'm little worried that we have two special route types: transit and helicopter. I have to pass both flags
bool isTransit
,bool isHelicopter
in couple of places. If we have any new such special case in future, let's think on better approach.Are they mutually exclusive? If yes, then an enum could be a better approach.
With single-tap ruler we get
_state == MWMNavigationDashboardStateReady
on each tap.Should we comment out
NSAssert(...)
or remove thisif (...)
.Why is this stateReady needed for each nav type? Logically, we can later add "Start navigation" to the ruler too.
The question is why the assert below happens (why is it called with MWMNavigationDashboardStatePlanning)?
Guessing is not the best strategy here, it may lead to many unexpected bugs...
LGTM
nit: I think these debug logs are useless, no?
nit:
[@[] mutableCopy]
strange construct ..nit: Probably nil is enough here, and check nil instead of empty below
Remove
\
, it is not used in c++ (except macroses)nit: std::move(points)
nit: Please, align params in column.
Changing to nil requires changing in
TransportTransitStepsCollectionView.swift
fieldsteps: [MWMRouterTransitStepInfo]
to nullable typesteps: [MWMRouterTransitStepInfo]?
and adding nil checks all over the file. Let's keep empty array for now.Removed debug logs in
RoutingController.setEndPoint()
andRoutingController.continueToPoint()
methods.Replaced with
[NSMutableArray new]
.Removed backslashes
Added
std::move(points)
in two places in this method.Fixed formatting
When we build or update route from iOS UI method
MWMRouter rebuildWithBestRouter: NO
is invoked which changes state toMWMNavigationDashboardStatePlanning
and callsRoutingManager.BuildRoute()
.But with current implementation
RoutingManager.BuildRoute()
is invoked not from UI code but fromFramework::OnTapEvent()
and it doesn't trigger planning state.Ok, time to finally merge it, IMO.
Thank you very much for this PR!
@ -172,6 +177,53 @@ final class RoutingBottomMenuController implements View.OnClickListener
distanceView.setText(info.getTotalPedestrianDistance() + " " + info.getTotalPedestrianDistanceUnits());
nit: final for non-modified variables.
@ -206,15 +258,18 @@ final class RoutingBottomMenuController implements View.OnClickListener
UiUtils.hide(mActionFrame);
Why is the size points.count * 2 - 1?
Is this if necessary? When it can be null?
nit: The length is the same, but clarity is better.
nit: Simpler is better )
@ -39,3 +39,3 @@
}
@objc func onNavigationInfoUpdated(_ info: MWMNavigationDashboardEntity) {
@objc func onNavigationInfoUpdated(_ info: MWMNavigationDashboardEntity, prependDistance: Bool) {
https://stackoverflow.com/questions/57655129/ios-autolayout-how-to-show-hide-a-view-including-its-margins
nit: Pass one enum instead if isTransit and isRuler?
nit: Make pattern a recognizable constant to find and edit it easier?
reserve?
What should be done here and why? Can the comment be updated?
@ -0,0 +17,4 @@
bool FindClosestProjectionToRoad(m2::PointD const & point, m2::PointD const & direction,
double radius, EdgeProj & proj) override;
// Do we need guides in this router?
What are guides?
Fixed formatting
@ -172,6 +177,53 @@ final class RoutingBottomMenuController implements View.OnClickListener
distanceView.setText(info.getTotalPedestrianDistance() + " " + info.getTotalPedestrianDistanceUnits());
Added
final
keyword@ -206,15 +258,18 @@ final class RoutingBottomMenuController implements View.OnClickListener
UiUtils.hide(mActionFrame);
Fixed formatting
Added
final
keywordChanged
include
toimport
.Fixed formatting. Added comment.
Fixed formatting
Fixed formatting
Fixed formatting
Fixed formatting
Fixed formatting
added
const
keywordChanged type to
bool
Fixed formatting
@ -39,3 +39,3 @@
}
@objc func onNavigationInfoUpdated(_ info: MWMNavigationDashboardEntity) {
@objc func onNavigationInfoUpdated(_ info: MWMNavigationDashboardEntity, prependDistance: Bool) {
There was a problem with panel min height = 80. I changed constraint to have height >= 40 and no more empty space ))
Fixed formatting
Added
.reserve()
Fixed formatting
Fixed formatting
This
if
was added from the very first commit ofMWMNavigationDashboardManager+Entity.mm
file in 2017. See commit #55b0d06.It would be great to understand the logic now and fix it if necessary.
Changed comment. Now it tells
Ruler router has no connection to road graph.
Replaced flags with enum
nit: We should provide constans for Pedestrian and Bycicle dashed lines too. Maybe move those parameters to MapCSS as we did with
RouteBicycle-color
,RouteRuler-color
?That is a good idea!