Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - Vyacheslav Rotko

#1
I want to write a theme for displaying roads of class "H".
For example:
Н9574 (https://www.openstreetmap.org/way/329708414)
Н9579 (https://www.openstreetmap.org/way/126577604)
...

The rule for displaying any "ref" key works:
<rule e="way" k="ref" v="*">
   <rule e="way" k="highway" v="tertiary|unclassified">
      <line stroke="#00d900" stroke-width="1.8" stroke-linecap="butt" />
   </rule>
</rule>

If I write <rule e="way" k="ref" v="H*">, then it won't work.

How do I write a rule for displaying roads where the value "ref" starts with the letter H?