Changes between Initial Version and Version 1 of Styles/ParcelLocker


Ignore:
Timestamp:
2022-07-27T14:24:37+02:00 (22 months ago)
Author:
Eifelkobold
Comment:

Initial JOSM release

Legend:

Unmodified
Added
Removed
Modified
  • Styles/ParcelLocker

    v1 v1  
     1This style adds Icons for Parcel lockers.
     2
     3{{{
     4#!style type="mapcss"
     5
     6meta
     7{
     8    title: "Show parcel lockers";
     9    description: "Show an icon for parcel lockers.";
     10    version: "0.[[revision]]_[[date]]_Antweiler";
     11    author: "Eifelkobold!";
     12    link: "https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dparcel_locker";
     13}
     14
     15node[amenity=parcel_locker]
     16{
     17    icon-image: "https://wiki.openstreetmap.org/w/images/f/f1/Parcel_locker_icon_mockup_-_32.svg";
     18        icon-width: 16;
     19    text: auto;
     20}
     21
     22node[amenity=parcel_locker][operator=DHL]
     23{
     24    icon-image: "https://wiki.openstreetmap.org/w/images/b/b4/Yellow_parcel_locker_symbol_-_128.svg";
     25        icon-width: 16;
     26    text: auto;
     27}
     28
     29node[amenity=parcel_locker][operator=DHL][parcel_pickup=no]
     30{
     31    icon-image: "https://wiki.openstreetmap.org/w/images/0/0d/Yellow_parcel_box_symbol_-_128.svg";
     32        icon-width: 16;
     33    text: auto;
     34}
     35
     36node[amenity=parcel_locker][operator=Amazon]
     37{
     38    icon-image: "https://wiki.openstreetmap.org/w/images/7/74/White_parcel_locker_symbol_-_128.svg";
     39        icon-width: 16;
     40    text: auto;
     41}
     42}}}