Changeset 7548 in josm for trunk/styles
- Timestamp:
- 2014-09-16T20:55:48+02:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/styles/standard/elemstyles.mapcss
r7542 r7548 126 126 } 127 127 128 /****************************/ 129 /* access restrictions tags */ 130 /****************************/ 131 132 way[access?!]::core_access { 133 z-index: -1; 134 width: +2; 135 color: no#ff8080; 136 dashes: 2,2; 137 } 138 way[access=permissive]::core_access { 139 z-index: -1; 140 width: +2; 141 color: permissive#80ff80; 142 dashes: 2,2; 143 } 144 way[access=private]::core_access { 145 z-index: -1; 146 width: +2; 147 color: private#ff8080; 148 dashes: 2,2; 149 } 150 way[access=destination]::core_access { 151 z-index: -1; 152 width: +2; 153 color: destination#8080ff; 154 dashes: 2,2; 155 } 156 node[access?!] { 157 icon-image: "vehicle/restriction/access.png"; 158 set icon_z17; 159 } 160 node[access=permissive], 161 node[access=private], 162 node[access=destination] { 163 icon-image: "misc/no_icon.png"; 164 set icon_z17; 165 text: auto; 166 } 167 node[bicycle?!] { 168 icon-image: "vehicle/restriction/bicycle.png"; 169 set icon_z17; 170 } 171 node[bicycle=designated] { 172 icon-image: "vehicle/restriction/bicycle-designated.png"; 173 set icon_z17; 174 text: auto; 175 } 176 node[foot?!] { 177 icon-image: "vehicle/restriction/foot.png"; 178 set icon_z17; 179 } 180 node[foot=designated] { 181 icon-image: "vehicle/restriction/foot-designated.png"; 182 set icon_z17; 183 text: auto; 184 } 185 node[goods?!], 186 node[hgv?!] { 187 icon-image: "vehicle/restriction/goods.png"; 188 set icon_z17; 189 } 190 node[horse?!] { 191 icon-image: "vehicle/restriction/horse.png"; 192 set icon_z17; 193 } 194 node[horse=designated] { 195 icon-image: "vehicle/restriction/horse-designated.png"; 196 set icon_z17; 197 } 198 node[motorcycle?!] { 199 icon-image: "vehicle/restriction/motorbike.png"; 200 set icon_z17; 201 } 202 node[motorcar?!] { 203 icon-image: "vehicle/restriction/motorcar.png"; 204 set icon_z17; 205 } 206 node[psv?!] { 207 icon-image: "vehicle/restriction/psv.png"; 208 set icon_z17; 209 } 210 node[motorboat?!], 211 node[boat?!] { 212 icon-image: "misc/no_icon.png"; 213 set icon_z17; 214 } 215 node[noexit?] { 216 icon-image: "vehicle/restriction/dead_end.png"; 217 set icon_z17; 218 } 219 node[maxweight] { 220 icon-image: "vehicle/restriction/maxweight.png"; 221 set icon_z17; 222 } 223 node[maxheight] { 224 icon-image: "vehicle/restriction/maxheight.png"; 225 set icon_z17; 226 } 227 node[maxwidth] { 228 icon-image: "vehicle/restriction/maxwidth.png"; 229 set icon_z17; 230 } 231 node[maxlength] { 232 icon-image: "vehicle/restriction/maxlength.png"; 233 set icon_z17; 234 } 235 node[minspeed] { 236 icon-image: "vehicle/restriction/minspeed.png"; 237 set icon_z17; 238 } 239 node[maxstay], 240 node[toll] { 241 icon-image: "misc/no_icon.png"; 242 set icon_z17; 243 } 244 128 245 /*****************************/ 129 246 /* building/entrance/address */ … … 199 316 set icon_z17; 200 317 text: auto; 201 }202 203 /****************************/204 /* access restrictions tags */205 /****************************/206 207 way[access?!]::core_access {208 z-index: -1;209 width: +2;210 color: no#ff8080;211 dashes: 2,2;212 }213 way[access=permissive]::core_access {214 z-index: -1;215 width: +2;216 color: permissive#80ff80;217 dashes: 2,2;218 }219 way[access=private]::core_access {220 z-index: -1;221 width: +2;222 color: private#ff8080;223 dashes: 2,2;224 }225 way[access=destination]::core_access {226 z-index: -1;227 width: +2;228 color: destination#8080ff;229 dashes: 2,2;230 }231 node[access?!] {232 icon-image: "vehicle/restriction/access.png";233 set icon_z17;234 }235 node[access=permissive],236 node[access=private],237 node[access=destination] {238 icon-image: "misc/no_icon.png";239 set icon_z17;240 text: auto;241 }242 node[bicycle?!] {243 icon-image: "vehicle/restriction/bicycle.png";244 set icon_z17;245 }246 node[bicycle=designated] {247 icon-image: "vehicle/restriction/bicycle-designated.png";248 set icon_z17;249 text: auto;250 }251 node[foot?!] {252 icon-image: "vehicle/restriction/foot.png";253 set icon_z17;254 }255 node[foot=designated] {256 icon-image: "vehicle/restriction/foot-designated.png";257 set icon_z17;258 text: auto;259 }260 node[goods?!],261 node[hgv?!] {262 icon-image: "vehicle/restriction/goods.png";263 set icon_z17;264 }265 node[horse?!] {266 icon-image: "vehicle/restriction/horse.png";267 set icon_z17;268 }269 node[horse=designated] {270 icon-image: "vehicle/restriction/horse-designated.png";271 set icon_z17;272 }273 node[motorcycle?!] {274 icon-image: "vehicle/restriction/motorbike.png";275 set icon_z17;276 }277 node[motorcar?!] {278 icon-image: "vehicle/restriction/motorcar.png";279 set icon_z17;280 }281 node[psv?!] {282 icon-image: "vehicle/restriction/psv.png";283 set icon_z17;284 }285 node[motorboat?!],286 node[boat?!] {287 icon-image: "misc/no_icon.png";288 set icon_z17;289 }290 node[noexit?] {291 icon-image: "vehicle/restriction/dead_end.png";292 set icon_z17;293 }294 node[maxweight] {295 icon-image: "vehicle/restriction/maxweight.png";296 set icon_z17;297 }298 node[maxheight] {299 icon-image: "vehicle/restriction/maxheight.png";300 set icon_z17;301 }302 node[maxwidth] {303 icon-image: "vehicle/restriction/maxwidth.png";304 set icon_z17;305 }306 node[maxlength] {307 icon-image: "vehicle/restriction/maxlength.png";308 set icon_z17;309 }310 node[minspeed] {311 icon-image: "vehicle/restriction/minspeed.png";312 set icon_z17;313 }314 node[maxstay],315 node[toll] {316 icon-image: "misc/no_icon.png";317 set icon_z17;318 318 } 319 319
Note:
See TracChangeset
for help on using the changeset viewer.