Global issues with icons and thoughts on improvement #4017
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#4017
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
Intro
After tinkering with OM icons for some time, I noticed several problems. Since they seem to be interconnected, it seems logical to list them together rather than split into separate issues. Disclaimer: I am neither a professional designer nor a professional software developer, but I have a soft spot for great apps (such as OM) and great designs (which is the point of this discussion).
1. Styles naming and file structure (subjective)
Using names
clear
/vehicle
for main styling of the map andclear
/night
for color mode is confusing. It could be renamed tobase
/vehicle
(with further addition ofhiking
,cycling
, etc.) andday
/night
respectively. Overall file structure related to icons makes me search for stuff for too long: paths likedata/styles/clear/style-night/symbols/
anddata/styles/clear/style-clear/xhdpi/
are hard to memorize and navigate.2. Workflow complexity (subjective)
As described in STYLES.md, adding icons requires running
generate_symbols.sh
, which calls custom skin_generator_tool. Since I am not a C++ developer, I failed to figure out the reason for having this custom tool, as well as the reason for joining all icons into a bigsymbols.png
withsymbols.sdf
. It feels like this workflow could be simplified by doing a SVG→PNG conversion separately, e.g. using Inkscape CLI.3. SVGs sizes are misleading for a designer
One of the hardest thing to figure out in the current SVG→PNG workflow is scaling of the icons. It turns out that SVG size in pixels is downscaled 0.75 to become mdpi (@1 on iOS), 0.75×1.5=1.125 to become hdpi, 0.75×2=1.5 to become xhdpi (@2 on iOS). For some icons dimensions, it goes like this:
airport-s
)alcohol-m
)This 0.75 downscaling leads to blurry designs. While editing SVGs, people tend to use pixel grid snapping, because it helps to achieve pixel-perfect design. Unfortunately in OM the SVGs pixel grid is misleading. To do real pixel-perfect icons, one should use 1pt=0.75px pixel grid in Inkscape, which is not intuitive at all. Here is my attempt at redrawing beer icon with the correct grid in mind:
The easy fix for this would be removing the 0.75 downscaling step from the code and resize the SVG files themselves. Unfortunately it will not fix pixel grid alignment for current icons, and the only benefit would be the simplification of the workflow for future icon designers.
4. Sizes of the icons are not consistent and their scaling is weird
As far as I can tell,
drape
uses the following scaling:https://github.com/organicmaps/organicmaps/blob/master/drape_frontend/visual_params.cpp#L37
First of all,
Xxxhdpi
is commonly understood as 4.0 (not 3.5).Secondly, skin generator tool uses different scaling:
https://github.com/organicmaps/organicmaps/blob/master/qt/build_style/build_skins.cpp#L37
https://github.com/organicmaps/organicmaps/blob/master/tools/unix/generate_symbols.sh#L89
This leads to a strange inconsistency for
xxhdpi
,6plus
andxxxhdpi
scales:@biodranik gave an advice to search for rationale in old omim repo, but I couldn't find anything clear on this topic. It seems that these discrepancies are here due to different approaches in different commits by different people over time.
While fixing it looks easy (just unify everything to 1/1.5/2/2.4/3/4), it would require extensive testing on various devices.
5. Data redundancy and styling limitations
night
icons are justclear
icons with the opacity set to 60%. organicmaps/organicmaps#4014I'm not sure, should it be fixed by separating icons from their backgrounds to merge them on the fly, or it would even increase workflow complexity. Anyway, when I tried
grep
ing hex codes from all non-subway SVGs to create a color palette for design guidelines, I found more colors used than it was expected, so further investigation and fixes are to be done.6. Design language and pixel-perfect approach
At the moment STYLES.md suggests to
First of all, it leads to copying vector shapes without their alignment on the pixel grid, which makes icons blurry on smaller screen resolutions (for mdpi it's even hard to recognise shapes). Secondly, even if someone tries to draw a nice icon themselves, they are likely to fail in designing a sharp icon due to reasons decribed above (3. SVGs sizes are misleading for a designer). Finally, even with correct pixel grid, design will be not consistent:
All these discrepancies can be noticed on a great page https://github.com/organicmaps/organicmaps/wiki/Icons.
There are good examples of nice map themed icon sets, such as mapbox/maki. To look good together, they are based on design guidelines. I believe that creating a guideline document for OM icon design and gradually updating icons to be compliant with it would drastically improve legibility as well as the overall impression of the app.
Conclusion
Many of the issues above may be solved independently, at least to some point. At the same time, I heard that current SVG→PNG pipeline is already seen as suboptimal by the developers. I'm not sure whether there are specific plans to render SVGs natively by
drape
or we gonna live with PNGs for another couple of years. While I have no real experience in building vector icons management tools, it definitely feels like the current approach could be improved in many ways. That said, I hope to provoke further discussion by this meta-issue.I'm working on improving the dark mode style of icons in organicmaps/organicmaps#4014