Display housenumbers above icons and main captions #5700

Merged
root merged 2 commits from pastk-drape-housenumbers-priority into master 2023-09-19 11:55:20 +00:00
Member

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.

image

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.

A new approach is to display housenumbers above icons, see https://git.omaps.dev/organicmaps/organicmaps/pulls/5700#issuecomment-1713965203 ### 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. ![image](https://github.com/organicmaps/organicmaps/assets/18434508/d4a5aece-65ab-4e39-a3d8-9b36cb92b9c4) 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.
biodranik (Migrated from github.com) reviewed 2023-08-11 15:37:04 +00:00
biodranik (Migrated from github.com) reviewed 2023-08-11 23:12:59 +00:00
biodranik (Migrated from github.com) left a comment
  1. Secondary house number looks good.
  2. Please do not suppress anything.
  3. Test it in the UK. You may grep areas with number + name via overpass turbo.
  4. @vng can implementation be better?
1. Secondary house number looks good. 2. Please do not suppress anything. 3. Test it in the UK. You may grep areas with number + name via overpass turbo. 4. @vng can implementation be better?
biodranik (Migrated from github.com) commented 2023-08-11 23:07:34 +00:00

What are the benefits of making them always optional? What are the cons?

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);
biodranik (Migrated from github.com) commented 2023-08-11 23:10:38 +00:00
  1. Won't it slow down the rendering?
  2. Cache bools.
1. Won't it slow down the rendering? 2. Cache bools.
pastk reviewed 2023-08-12 07:23:11 +00:00
@ -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);
Author
Member

They're calculated once. Its just getting a stored bool value from the object.

They're calculated once. Its just getting a stored bool value from the object.
pastk reviewed 2023-08-12 07:27:01 +00:00
Author
Member

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.

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.
vng (Migrated from github.com) reviewed 2023-08-15 13:41:46 +00:00
vng (Migrated from github.com) commented 2023-08-15 13:37:20 +00:00

Should we assign else here?

else
  textParams.m_specialDisplacement = None;
Should we assign else here? ``` else textParams.m_specialDisplacement = None; ```
vng (Migrated from github.com) commented 2023-08-15 13:33:45 +00:00

I suspect that correct braces should be like:

if (mainTextType == drule::text_type_housenumber ||
   (mainTextType == drule::text_type_name && (m_mainText.empty() || m_houseNumber.find(m_mainText) != std::string::npos)))
I suspect that correct braces should be like: ``` if (mainTextType == drule::text_type_housenumber || (mainTextType == drule::text_type_name && (m_mainText.empty() || m_houseNumber.find(m_mainText) != std::string::npos))) ```
vng (Migrated from github.com) commented 2023-08-15 13:35:53 +00:00

If we don't care what will be left in m_houseNumber, better to write here and below:

m_mainText = std::move(m_houseNumber);
If we don't care what will be left in m_houseNumber, better to write here and below: ``` m_mainText = std::move(m_houseNumber); ```
vng (Migrated from github.com) commented 2023-08-15 13:41:40 +00:00

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.

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.
vng (Migrated from github.com) reviewed 2023-09-17 22:18:57 +00:00
vng (Migrated from github.com) commented 2023-09-17 21:58:48 +00:00

Why do we test hasIcon above if we have ASSERT(!hasIcon) here ?

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)
vng (Migrated from github.com) commented 2023-09-17 21:48:38 +00:00

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

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;
vng (Migrated from github.com) commented 2023-09-17 22:05:07 +00:00

ASSERT(m_auxText.empty() || !m_mainText.empty())

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
vng (Migrated from github.com) commented 2023-09-17 22:15:09 +00:00

Looks like a good optimization. Better not to hardcode, but take out for example into RulesHolder and calculate this scale once. Like RulesHolder::GetMinHNZoom().

Looks like a good optimization. Better not to hardcode, but take out for example into RulesHolder and calculate this scale once. Like RulesHolder::GetMinHNZoom().
pastk reviewed 2023-09-18 12:41:15 +00:00
@ -437,2 +392,3 @@
if (s.m_captionDescriptor.IsNameExists())
aggregator.m_rules.push_back(aggregator.m_captionRule);
else
Author
Member

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.

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.
pastk reviewed 2023-09-18 12:41:22 +00:00
@ -269,3 +262,3 @@
bool const auxCaptionExists)
feature::GeomType const type, bool const auxCaptionExists)
{
feature::NameParamsOut out;
Author
Member

fixed, thanks!

fixed, thanks!
pastk reviewed 2023-09-18 12:41:27 +00:00
Author
Member

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).

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).
pastk reviewed 2023-09-18 12:41:31 +00:00
@ -116,3 +113,4 @@
, m_captionRule({ nullptr, 0, false, false })
, m_f(f)
, m_geomType(type)
, m_zoomLevel(zoomLevel)
Author
Member

good catch, thanks!

good catch, thanks!
vng (Migrated from github.com) reviewed 2023-09-18 18:00:08 +00:00
vng (Migrated from github.com) commented 2023-09-18 18:00:08 +00:00

Ok, rewrite like:

if (m_textParams.m_titleDecl.m_anchor == dp::Anchor::Center)
{
  ASSERT(!hasIcon, (m_id));
  if (hasHouseNumber)
    m_textParams.m_titleDecl.m_anchor = GetAnchor(0, 1);
}
Ok, rewrite like: ``` if (m_textParams.m_titleDecl.m_anchor == dp::Anchor::Center) { ASSERT(!hasIcon, (m_id)); if (hasHouseNumber) m_textParams.m_titleDecl.m_anchor = GetAnchor(0, 1); } ```
vng (Migrated from github.com) approved these changes 2023-09-18 18:07:00 +00:00
pastk reviewed 2023-09-18 18:41:40 +00:00
Author
Member

Still, we'd want to fix the anchor for the icon case, so the second if would be if (hasHouseNumber || hasIcon)

Still, we'd want to fix the anchor for the icon case, so the second `if` would be `if (hasHouseNumber || hasIcon)`
pastk reviewed 2023-09-18 18:43:52 +00:00
Author
Member

So I don't know if this code will be any better, conditions will be the same, but just split into two lines..

So I don't know if this code will be any better, conditions will be the same, but just split into two lines..
vng (Migrated from github.com) reviewed 2023-09-19 00:18:03 +00:00
vng (Migrated from github.com) commented 2023-09-19 00:18:03 +00:00

Still, we'd want to fix the anchor for the icon case, so the second if would be if (hasHouseNumber || hasIcon)

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?
}

> Still, we'd want to fix the anchor for the icon case, so the second if would be if (hasHouseNumber || hasIcon) 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? }
pastk reviewed 2023-09-19 10:01:27 +00:00
Author
Member

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.

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.
This repo is archived. You cannot comment on pull requests.
No reviewers
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
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#5700
No description provided.