Display housenumbers above icons and main captions #5700
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#5700
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "pastk-drape-housenumbers-priority"
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?
A new approach is to display housenumbers above icons, see organicmaps/organicmaps#5700 (comment)
An original old post with an attempt to use secondary captions:
If a secondary caption is not used then it's filled with a house number.
No change for cases when the secondary caption is used for
int_name
display.In the vehicle style housenumbers always replace the primary caption, so the behavior didn't change there.
What are the benefits of making them always optional? What are the cons?
@ -470,1 +427,3 @@
aggregator.m_rules.push_back({ dRule, static_cast<float>(addressKeys[0].m_priority), false });
TRuleWrapper const hnRule({ dRule, static_cast<float>(addressKeys[0].m_priority),
false, true /* m_isHouseNumber*/ });
aggregator.m_rules.push_back(hnRule);
@ -470,1 +427,3 @@
aggregator.m_rules.push_back({ dRule, static_cast<float>(addressKeys[0].m_priority), false });
TRuleWrapper const hnRule({ dRule, static_cast<float>(addressKeys[0].m_priority),
false, true /* m_isHouseNumber*/ });
aggregator.m_rules.push_back(hnRule);
They're calculated once. Its just getting a stored bool value from the object.
I see no cons.
Even in the only case of a mandatory caption plus a star icon for capitals - if e.g. a country name displaces the secondary int_name of the capital then the primary name and a star icon better stay, right?
Other cases are like a train station with a secondary int_name. Also better to displace just the secondary one and let the primary stay instead of removing them both at once.
Should we assign else here?
I suspect that correct braces should be like:
If we don't care what will be left in m_houseNumber, better to write here and below:
Please, remove your changes here, oms2type, feature_data.
This logic is reworked in generator branch and I will get unnecessary merge conflicts.
It will be in a PR soon.
Anyway, what is the reason to check 2 sequential AddHouseName calls? It won't happen in the generator anyway.
Why do we test hasIcon above if we have ASSERT(!hasIcon) here ?
@ -116,3 +113,4 @@
, m_captionRule({ nullptr, 0, false, false })
, m_f(f)
, m_geomType(type)
, m_zoomLevel(zoomLevel)
Does m_captionRule != nullptr means m_mainCaptionFound == true ?
Also I think that m_auxCaptionFound flag also not needed.
Can replace with TRuleWrapper::HasMainCaption, TRuleWrapper::HasAuxCaption
@ -269,3 +262,3 @@
bool const auxCaptionExists)
feature::GeomType const type, bool const auxCaptionExists)
{
feature::NameParamsOut out;
ASSERT(m_auxText.empty() || !m_mainText.empty())
@ -437,2 +392,3 @@
if (s.m_captionDescriptor.IsNameExists())
aggregator.m_rules.push_back(aggregator.m_captionRule);
else
Looks like a good optimization. Better not to hardcode, but take out for example into RulesHolder and calculate this scale once. Like RulesHolder::GetMinHNZoom().
@ -437,2 +392,3 @@
if (s.m_captionDescriptor.IsNameExists())
aggregator.m_rules.push_back(aggregator.m_captionRule);
else
Yes, it'll be more flexible for sure.
But it'll also pollute RulesHolder loading logic with the housenumbers exception. So instead of a single line hardcoded housenumbers zoom level we'll have many hardcoded lines for a way to get this housenumbers zoom level...
And we have a hardcoded z18- min zoom for point housenumbers anyway....
So I just left a TODO for now.
@ -269,3 +262,3 @@
bool const auxCaptionExists)
feature::GeomType const type, bool const auxCaptionExists)
{
feature::NameParamsOut out;
fixed, thanks!
A condition above is for (hasIcon || hasHouseNumber).
An assert is for icons only to catch bugs (they're being fixed here in runtime anyway, but good to fix in the styles). We can change the logic here once we're sure all related bugs in styles had been fixed (or once we decide what to do with
text-offset:
style params).@ -116,3 +113,4 @@
, m_captionRule({ nullptr, 0, false, false })
, m_f(f)
, m_geomType(type)
, m_zoomLevel(zoomLevel)
good catch, thanks!
Ok, rewrite like:
Still, we'd want to fix the anchor for the icon case, so the second
if
would beif (hasHouseNumber || hasIcon)
So I don't know if this code will be any better, conditions will be the same, but just split into two lines..
No because ASSERT(!hasIcon). Or I incorrectly interpret your code?
I try to avoid misambiguity. We have:
if (X || ...)
{
ASSERT(!X, ()); // so if we have !X here, why do we check if (X) above?
}
There could be cases in prod when there is icon and anchor is set to center.
We want to fix them at runtime and at the same time fire an assert in debug to catch those cases and fix in styles.