Changes between Version 257 and Version 258 of Help/Styles/MapCSSImplementation
- Timestamp:
- 2023-06-23T17:14:30+02:00 (2 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Help/Styles/MapCSSImplementation
v257 v258 250 250 way[highway=residential] /* is case sensitive, i.e. does NOT match e.g. highway=Residential or Highway=residential */ 251 251 node[name="My name"] /* use quotes if key or value includes spaces */ 252 node["name: ru"="Калининград"] /* use quotes if key or value includes special characters like colons or unicode characters */252 node["name:pl"="Królewiec"] /* use quotes if key or value includes special characters like colons or unicode characters */ 253 253 }}} 254 254 }}} … … 265 265 way[highway!=residential] 266 266 node[name!="My name"] 267 node["name: ru"!="Калининград"]267 node["name:pl"!="Królewiec"] 268 268 }}} 269 269 }}}