[ios] Remove invisible taxi button from route preview #3456
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#3456
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "ios_remove_taxi"
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?
As I understand, taxi routing was remove a while ago, but invisible taxi icon remained in route preview. Deleted it; icons are now nicely center aligned.
Was


After this fix
Thanks! Can you please replace the taxi icon with a helicopter icon (and leave it hidden for now)? We plan to add a "helicopter" routing :)
Took a while to confirm the helicopter wasn't a joke:)
Added back the button to storyboard and unmarked "Installed" to hide it. It does not have an icon and is not connected to anything else.
I did not "Uninstall" the constraints though. This gives out a few warnings, but it will require less clicks to re-enable the helicopter button. Is that OK?
Thanks! What kind of warnings did you get?
Can you please check how this icon will look like (and share a screenshot)? https://github.com/mapbox/maki/blob/main/icons/heliport.svg
If it's ok, you can add it (and probably update our data/copyright.html with Maki license).
Below are the image of how the helicopter looks. Also while there, I tried out the bicycle icon from the same repo. IMO it looks better


in comparison with the old bicycle icon:
The warnings given are multiple of
Constraint referencing items turned off in current configuration. Turn off this constraint in the current configuration
. These can be turned of just by uninstalling the constraints too (not just the button).i like the new bicycle icon, i'll make a PR adding these things to android as well if this is approved 👍
Thanks! The icons look good. Maybe the maki icons size can be slightly increased somehow, to (almost) match other icons height? The same "resized" icon can be reused on all platforms.
Also please don't forget about the copyright.
@nojus297 to confirm: in this PR helicopter is invisible, right?
yes, invisible and not taking space (allowing other icons to be centered).
I scaled both new icons by 220% (with inkscape). Do they need to be even bigger? (Note that the new bike is bigger than the old one, and both of the new icons are closer to the edges than ones of car and pedestrian).
Also the new icons are more horizontal, so scaling them to match height might make them very wide.
The idea is to make them slightly more recognizable to people with bad eyesight. Let's compare the look of the current version with a slight increase.
Sharing some screenshots to compare:



previous (220% from maki)
scaled by 5% (231% total)
scaled by 10% (241% total)
The difference is almost negligible, but bigger looks better. What do you think?
I prefer +5%, I'm okay with +10% but definitely would not want to go any bigger, already looks a bit cramped to my eyes.
However, if we go with +10%, we should probably scale the car as well, as it looks a bit small in comparison (when not selected)

Good point. Ok, 5% is also good. Let's move on with implementing the helicopter routing in the code in another PR :) @nojus297 can you start to draft it? We will help by adding support in the core.
Added the new icons with the license. Also some Helicopter enum values, guessing best switch case in some places. (Helicopter is currently not visible).
Good start! Let's check how other routers are working and try to do the same. The difference will be is that the route can be calculated instantly via specified points.
@ -104,9 +104,6 @@ static CGFloat const kDrivingOptionsHeight = 48;
{
for (auto const & progress : m_progresses)
progress.second.state = MWMCircularProgressStateNormal;
These comments can be removed.
No, it's better to insert it at the end. Please try to understand what the previous code did and decide if it is relevant here.
Also, sometimes it is better to leave a warning and come back to fix it later.
Is this ok now?
Are we planning to implement the actual routing in this PR too? Could we merge this PR now and add routing in separate PR, leaving this one just for icons?
It is a good idea. But then let's create a new PR and move there these enums and switch cases. There should be no any side effect in the master.
Removed all the helicopters from routing logic.
Thanks! Can be squashed if all checks pass.
Looks like it passed
Great, thanks!
Should I open a new PR for Helicopter routing? (With the reverted enum changes)
Yes, if you plan to implement it and actually fill these enum switch cases with a valid code )