Changeset 7548 in josm


Ignore:
Timestamp:
2014-09-16T20:55:48+02:00 (10 years ago)
Author:
bastiK
Message:

mapstyle: move building/entrance below access

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/styles/standard/elemstyles.mapcss

    r7542 r7548  
    126126}
    127127
     128/****************************/
     129/* access restrictions tags */
     130/****************************/
     131
     132way[access?!]::core_access {
     133    z-index: -1;
     134    width: +2;
     135    color: no#ff8080;
     136    dashes: 2,2;
     137}
     138way[access=permissive]::core_access {
     139    z-index: -1;
     140    width: +2;
     141    color: permissive#80ff80;
     142    dashes: 2,2;
     143}
     144way[access=private]::core_access {
     145    z-index: -1;
     146    width: +2;
     147    color: private#ff8080;
     148    dashes: 2,2;
     149}
     150way[access=destination]::core_access {
     151    z-index: -1;
     152    width: +2;
     153    color: destination#8080ff;
     154    dashes: 2,2;
     155}
     156node[access?!] {
     157    icon-image: "vehicle/restriction/access.png";
     158    set icon_z17;
     159}
     160node[access=permissive],
     161node[access=private],
     162node[access=destination] {
     163    icon-image: "misc/no_icon.png";
     164    set icon_z17;
     165    text: auto;
     166}
     167node[bicycle?!] {
     168    icon-image: "vehicle/restriction/bicycle.png";
     169    set icon_z17;
     170}
     171node[bicycle=designated] {
     172    icon-image: "vehicle/restriction/bicycle-designated.png";
     173    set icon_z17;
     174    text: auto;
     175}
     176node[foot?!] {
     177    icon-image: "vehicle/restriction/foot.png";
     178    set icon_z17;
     179}
     180node[foot=designated] {
     181    icon-image: "vehicle/restriction/foot-designated.png";
     182    set icon_z17;
     183    text: auto;
     184}
     185node[goods?!],
     186node[hgv?!] {
     187    icon-image: "vehicle/restriction/goods.png";
     188    set icon_z17;
     189}
     190node[horse?!] {
     191    icon-image: "vehicle/restriction/horse.png";
     192    set icon_z17;
     193}
     194node[horse=designated] {
     195    icon-image: "vehicle/restriction/horse-designated.png";
     196    set icon_z17;
     197}
     198node[motorcycle?!] {
     199    icon-image: "vehicle/restriction/motorbike.png";
     200    set icon_z17;
     201}
     202node[motorcar?!] {
     203    icon-image: "vehicle/restriction/motorcar.png";
     204    set icon_z17;
     205}
     206node[psv?!] {
     207    icon-image: "vehicle/restriction/psv.png";
     208    set icon_z17;
     209}
     210node[motorboat?!],
     211node[boat?!] {
     212    icon-image: "misc/no_icon.png";
     213    set icon_z17;
     214}
     215node[noexit?] {
     216    icon-image: "vehicle/restriction/dead_end.png";
     217    set icon_z17;
     218}
     219node[maxweight] {
     220    icon-image: "vehicle/restriction/maxweight.png";
     221    set icon_z17;
     222}
     223node[maxheight] {
     224    icon-image: "vehicle/restriction/maxheight.png";
     225    set icon_z17;
     226}
     227node[maxwidth] {
     228    icon-image: "vehicle/restriction/maxwidth.png";
     229    set icon_z17;
     230}
     231node[maxlength] {
     232    icon-image: "vehicle/restriction/maxlength.png";
     233    set icon_z17;
     234}
     235node[minspeed] {
     236    icon-image: "vehicle/restriction/minspeed.png";
     237    set icon_z17;
     238}
     239node[maxstay],
     240node[toll] {
     241    icon-image: "misc/no_icon.png";
     242    set icon_z17;
     243}
     244
    128245/*****************************/
    129246/* building/entrance/address */
     
    199316    set icon_z17;
    200317    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;
    318318}
    319319
Note: See TracChangeset for help on using the changeset viewer.