Changes between Version 4 and Version 5 of Styles/UkraineRoadNetwork
- Timestamp:
- 2024-02-05T00:10:40+01:00 (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Styles/UkraineRoadNetwork
v4 v5 20 20 21 21 22 == Code == 23 24 22 25 {{{ 23 26 #!style type="mapcss" … … 31 34 link: "https://josm.openstreetmap.de/wiki/Styles/UkraineRoadNetwork"; 32 35 } 33 meta[lang=uk] 34 { 36 meta[lang=uk] { 35 37 title: "Українська мережа доріг"; 36 38 description: "Цей стиль допоможе визначити сітку Українських дорог які є і обліковуються Українським законодавством, і допоможе виправити помилки, знайти перетини, а також дірки у дорожному графі."; 37 39 } 38 40 41 39 42 setting::colordisplayM { 40 43 type: color; 41 label: tr("Color used for displaying 'М-' Roads");44 label: tr("Color used for displaying 'М-' roads"); 42 45 default: colorDisplayCustomPref#42FF77; 43 46 } 44 47 setting::colordisplayH { 45 48 type: color; 46 label: tr("Color used for displaying 'H-' Roads");49 label: tr("Color used for displaying 'H-' roads"); 47 50 default: colorDisplayCustomPref#FFA03C; 48 51 } 49 52 setting::colordisplayP { 50 53 type: color; 51 label: tr("Color used for displaying 'P-' Roads");54 label: tr("Color used for displaying 'P-' roads"); 52 55 default: colorDisplayCustomPref#FF6161; 53 56 } 54 57 setting::colordisplayT { 55 58 type: color; 56 label: tr("Color used for displaying 'T-' Roads");59 label: tr("Color used for displaying 'T-' roads"); 57 60 default: colorDisplayCustomPref#0cc299; 58 61 } 59 62 setting::colordisplayO { 60 63 type: color; 61 label: tr("Color used for displaying 'O-' Roads");64 label: tr("Color used for displaying 'O-' roads"); 62 65 default: colorDisplayCustomPref#548EFF; 63 66 } 64 67 setting::colordisplayC { 65 68 type: color; 66 label: tr("Color used for displaying 'C-' Roads");69 label: tr("Color used for displaying 'C-' roads"); 67 70 default: colorDisplayCustomPref#2E4E8C; 68 71 } … … 71 74 /* Загальний набор стилей для визначення доріг в мережі */ 72 75 /***************************************************/ 73 relation[type="route"][route="road"][ref]> way|z1 2-14[highway] {76 relation[type="route"][route="road"][ref]> way|z11-[highway] { 74 77 text: ref; 75 78 text-offset: -9; … … 79 82 } 80 83 81 relation[type="route"][route="road"][ref]> way|z13-18[highway] { 82 text: ref; 83 text-offset: -9; 84 relation[type="route"][route="road"][ref]> way|z14-[highway] { 84 85 font-size: 12; 85 text-halo-color: current;86 text-halo-radius: 2;87 88 86 } 89 87 … … 127 125 } 128 126 127 relation[type="route"][route="road"][ref=~/М-.|Н-./] > way|z4-7[highway]{ 128 width: 3; 129 } 130 relation[type="route"][route="road"][ref=~/Р-.|Т-./] > way|z4-7[highway]{ 131 width: 2; 132 } 133 relation[type="route"][route="road"][ref=~/О.|С./] > way|z4-7[highway]{ 134 width: 1; 135 } 136 relation[type="route"][route="road"][ref=~/М-.|Н-./] > way|z8-10[highway]{ 137 width: 4; 138 } 139 relation[type="route"][route="road"][ref=~/Р-.|Т-./] > way|z8-10[highway]{ 140 width: 3; 141 } 142 relation[type="route"][route="road"][ref=~/О.|С./] > way|z8-10[highway]{ 143 width: 2; 144 } 145 146 node[place] { 147 text: name; 148 font-size: 12; 149 text-halo-color: current; 150 text-halo-radius: 2; 151 } 152 node|z4-11[place] { 153 font-size: 10; 154 text-halo-radius: 1; 155 } 156 node|z4-10[place][population < 3000] { 157 text:""; 158 icon-image: none; 159 } 160 161 node|z12-18[place] { 162 font-size: 13; 163 text-halo-radius: 2; 164 text-halo-opacity: 0.9; 165 } 166 167 way|z4-8[bridge="yes"] { 168 fill-color: currentColor; 169 } 170 171 129 172 /***************************************************/ 130 173 /* ці стилі допоможуть виявляти проблеми з мережею */ 131 174 /***************************************************/ 132 175 133 /* Відношення е, але нема еREF у вея для відношення! */176 /* Відношення е, але немає REF у вея для відношення! */ 134 177 relation[type="route"][route="road"] > way[highway][!ref] { 135 178 dashes: 30,5; … … 137 180 138 181 } 182 139 183 }}} 140