Feasibility of the "dynamic tags" styling mechanism #6331

Open
opened 2023-10-17 19:13:44 +00:00 by pastk · 0 comments
Member

E.g.

node|z12-[natural=peak][name],
{icon-image: peakt-s.svg;icon-min-distance: 10;}
node|z15-[natural=peak][name],
{icon-image: peakt-m.svg;font-size: 10;}

node|z15-[natural=peak][!name],
{icon-image: peakt-m.svg;font-size: 10;}

makes named peaks icons visible from z12- while nameless ones visible from z15-.

So basically it allows the renderer to pick a different style for the feature based on some run-time condition (currently implemented conditions are name, population and bbox_area).

What's controversial is that the same could be achieved at the generation stage (e.g. add a natural-peak-named type) without a run-time overhead.

(Under the hood, when a "dynamic tag" is used then for this feature type kothic produces additional sets of drules with an added application condition like apply_if: "!name". The renderer loads all features' drules, parses and resolves the condition and filters the drules accordingly.)

E.g. if we decide to make touristic features with a tourism=attraction (heritage=* etc.) more visible then we can either use the "dynamic tags" mechanism for that (check presence of the additional tourism-attraction type at run-time) or add sub-types like historic-castle-attraction.

If we go "dynamic tags" way:
pros:

  • no need to define sub-types in mapcss-mapping.csv (could be a big deal if there are some sub-types already like -fee/private/etc, but in most cases just a small convenience)

cons:

  • some run-time overhead
  • an extra type (tourism-attraction) to store per-feature

Note that both ways will require defining additional attraction styling rules for all features (historic-castle/ruins/monument/etc.) we'd want to differentiate.

So basically this mechanism gives some styling convenience at the expense of run-time overhead.
And styling convenience could be improved at the generator stage instead by refactoring handling of types "attributes", see some thoughts in organicmaps/organicmaps#1312 (comment)).

WDYT?

E.g. ``` node|z12-[natural=peak][name], {icon-image: peakt-s.svg;icon-min-distance: 10;} node|z15-[natural=peak][name], {icon-image: peakt-m.svg;font-size: 10;} node|z15-[natural=peak][!name], {icon-image: peakt-m.svg;font-size: 10;} ``` makes named peaks icons visible from z12- while nameless ones visible from z15-. So basically it allows the renderer to pick a different style for the feature based on some run-time condition (currently implemented conditions are `name`, `population` and `bbox_area`). What's controversial is that the same could be achieved at the generation stage (e.g. add a `natural-peak-named` type) without a run-time overhead. (Under the hood, when a "dynamic tag" is used then for this feature type kothic produces additional sets of drules with an added application condition like `apply_if: "!name"`. The renderer loads all features' drules, parses and resolves the condition and filters the drules accordingly.) E.g. if we decide to make touristic features with a `tourism=attraction` (`heritage=*` etc.) more visible then we can either use the "dynamic tags" mechanism for that (check presence of the additional `tourism-attraction` type at run-time) or add sub-types like `historic-castle-attraction`. If we go "dynamic tags" way: pros: - no need to define sub-types in `mapcss-mapping.csv` (could be a big deal if there are some sub-types already like `-fee/private/etc`, but in most cases just a small convenience) cons: - some run-time overhead - an extra type (`tourism-attraction`) to store per-feature Note that both ways will require defining additional `attraction` styling rules for all features (`historic-castle/ruins/monument/etc.`) we'd want to differentiate. So basically this mechanism gives some styling convenience at the expense of run-time overhead. And styling convenience could be improved at the generator stage instead by refactoring handling of types "attributes", see some thoughts in https://git.omaps.dev/organicmaps/organicmaps/issues/1312#issuecomment-1706344221). WDYT?
This repo is archived. You cannot comment on issues.
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
1 participant
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#6331
No description provided.