Changes between Initial Version and Version 1 of Styles/Places_ES_styles


Ignore:
Timestamp:
2019-12-29T23:47:07+01:00 (6 years ago)
Author:
iagocg
Comment:

Creation

Legend:

Unmodified
Added
Removed
Modified
  • Styles/Places_ES_styles

    v1 v1  
     1{{{
     2#!style type="mapcss"
     3meta {
     4    title: "Places_ES_styles";
     5    version: "0.[[revision]]_[[date]]";
     6    description: "Displays nodes with [place=*] for Spain.";
     7    icon: "city.svg";
     8    author: "Iago Casabiell González";
     9    link: "https://raw.githubusercontent.com/iagocg/presets_josm/master/Places_ES_styles/Places_ES_styles.mapcss"
     10}
     11
     12/*-- Territories --*/
     13node[place=country]
     14{
     15    icon-image: "territory02.svg";
     16    text: auto;
     17}
     18
     19node[place=state]
     20{
     21    icon-image: "territory04.svg";
     22    text: auto;
     23}
     24
     25node[place=province]
     26{
     27    icon-image: "territory06.svg";
     28    text: auto;
     29}
     30
     31node[place=county]
     32{
     33    icon-image: "territory07.svg";
     34    text: auto;
     35}
     36
     37node[place=municipality]
     38{
     39    icon-image: "territory08.svg";
     40    text: auto;
     41}
     42
     43node[place=civil_parish]
     44{
     45    icon-image: "territory09.svg";
     46    text: auto;
     47}
     48
     49node[place=ward]
     50{
     51    icon-image: "territory10.svg";
     52    text: auto;
     53}
     54
     55/*-- Entities --*/
     56node[place=city]
     57{
     58    icon-image: "city.svg";
     59    text: auto;
     60}
     61
     62node[place=town]
     63{
     64    icon-image: "town.svg";
     65    text: auto;
     66}
     67
     68node[place=village]
     69{
     70    icon-image: "village.svg";
     71    text: auto;
     72}
     73
     74node[place=hamlet]
     75{
     76    icon-image: "hamlet.svg";
     77    text: auto;
     78}
     79
     80node[place=allotments]
     81{
     82    icon-image: "allotments.svg";
     83    text: auto;
     84}
     85
     86node[place=isolated_dwelling]
     87{
     88    icon-image: "isolated_dwelling.svg";
     89    text: auto;
     90}
     91
     92/*-- Sub-city entities --*/
     93node[place=borough]
     94{
     95    icon-image: "borough.svg";
     96    text: auto;
     97}
     98
     99node[place=suburb]
     100{
     101    icon-image: "suburb.svg";
     102    text: auto;
     103}
     104
     105node[place=quarter]
     106{
     107    icon-image: "quarter.svg";
     108    text: auto;
     109}
     110
     111node[place=neighbourhood]
     112{
     113    icon-image: "neighbourhood.svg";
     114    text: auto;
     115}
     116
     117node[place=city_block]
     118{
     119    icon-image: "city_block.svg";
     120    text: auto;
     121}
     122
     123node[place=plot]
     124{
     125    icon-image: "plot.svg";
     126    text: auto;
     127}
     128}}}