Add a ': none;' syntax for disabling area and icon drules #19
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/kothic#19
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "pastk-drule-reset-syntax"
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?
@ -642,3 +642,3 @@
has_lines = True
if 'icon-image' in st or 'symbol-shape' in st or 'symbol-image' in st:
if 'icon-image' in st and st.get('icon-image') != 'none' or 'symbol-shape' in st or 'symbol-image' in st:
has_icons = True
Hm, just noticed, what do symbol-shape and symbol-image mean? Are they obsolete?
@ -642,3 +642,3 @@
has_lines = True
if 'icon-image' in st or 'symbol-shape' in st or 'symbol-image' in st:
if 'icon-image' in st and st.get('icon-image') != 'none' or 'symbol-shape' in st or 'symbol-image' in st:
has_icons = True
symbol-shape
are for "circles", I don't know if they work, a quick experiment didn't show anythingsymbol-image
is used in one line only :) so redundant for sure