Changes between Version 4 and Version 5 of Styles/UkraineRoadNetwork


Ignore:
Timestamp:
2024-02-05T00:10:40+01:00 (12 months ago)
Author:
bezdna
Comment:

update style

Legend:

Unmodified
Added
Removed
Modified
  • Styles/UkraineRoadNetwork

    v4 v5  
    2020
    2121
     22== Code ==
     23
     24
    2225{{{
    2326#!style type="mapcss"
     
    3134        link: "https://josm.openstreetmap.de/wiki/Styles/UkraineRoadNetwork";
    3235}
    33 meta[lang=uk]
    34 {
     36meta[lang=uk] {
    3537        title: "Українська мережа доріг";
    3638        description: "Цей стиль допоможе визначити сітку Українських дорог які є і обліковуються Українським законодавством, і допоможе виправити помилки, знайти перетини, а також дірки у дорожному графі.";
    3739}
    3840
     41
    3942setting::colordisplayM {
    4043        type: color;
    41         label: tr("Color used for displaying 'М-' Roads");
     44        label: tr("Color used for displaying 'М-' roads");
    4245        default: colorDisplayCustomPref#42FF77;
    4346}
    4447setting::colordisplayH {
    4548        type: color;
    46         label: tr("Color used for displaying 'H-' Roads");
     49        label: tr("Color used for displaying 'H-' roads");
    4750        default: colorDisplayCustomPref#FFA03C;
    4851}
    4952setting::colordisplayP {
    5053        type: color;
    51         label: tr("Color used for displaying 'P-' Roads");
     54        label: tr("Color used for displaying 'P-' roads");
    5255        default: colorDisplayCustomPref#FF6161;
    5356}
    5457setting::colordisplayT {
    5558        type: color;
    56         label: tr("Color used for displaying 'T-' Roads");
     59        label: tr("Color used for displaying 'T-' roads");
    5760        default: colorDisplayCustomPref#0cc299;
    5861}
    5962setting::colordisplayO {
    6063        type: color;
    61         label: tr("Color used for displaying 'O-' Roads");
     64        label: tr("Color used for displaying 'O-' roads");
    6265        default: colorDisplayCustomPref#548EFF;
    6366}
    6467setting::colordisplayC {
    6568        type: color;
    66         label: tr("Color used for displaying 'C-' Roads");
     69        label: tr("Color used for displaying 'C-' roads");
    6770        default: colorDisplayCustomPref#2E4E8C;
    6871}
     
    7174/*  Загальний набор стилей для визначення доріг в мережі */
    7275/***************************************************/
    73 relation[type="route"][route="road"][ref]> way|z12-14[highway] {
     76relation[type="route"][route="road"][ref]> way|z11-[highway] {
    7477        text: ref;
    7578        text-offset: -9;
     
    7982}
    8083
    81 relation[type="route"][route="road"][ref]> way|z13-18[highway] {
    82         text: ref;
    83         text-offset: -9;
     84relation[type="route"][route="road"][ref]> way|z14-[highway] {
    8485        font-size: 12;
    85     text-halo-color: current;
    86         text-halo-radius: 2;
    87 
    8886}
    8987
     
    127125}
    128126
     127relation[type="route"][route="road"][ref=~/М-.|Н-./] > way|z4-7[highway]{
     128        width: 3;
     129}
     130relation[type="route"][route="road"][ref=~/Р-.|Т-./] > way|z4-7[highway]{
     131    width: 2;
     132}
     133relation[type="route"][route="road"][ref=~/О.|С./] > way|z4-7[highway]{
     134    width: 1;
     135}
     136relation[type="route"][route="road"][ref=~/М-.|Н-./] > way|z8-10[highway]{
     137    width: 4;
     138}
     139relation[type="route"][route="road"][ref=~/Р-.|Т-./] > way|z8-10[highway]{
     140    width: 3;
     141}
     142relation[type="route"][route="road"][ref=~/О.|С./] > way|z8-10[highway]{
     143    width: 2;
     144}
     145
     146node[place] {
     147        text: name;
     148        font-size: 12;
     149        text-halo-color: current;
     150        text-halo-radius: 2;
     151}
     152node|z4-11[place] {
     153        font-size: 10;
     154        text-halo-radius: 1;
     155}
     156node|z4-10[place][population < 3000] {
     157        text:"";
     158        icon-image: none;
     159}
     160
     161node|z12-18[place] {
     162        font-size: 13;
     163        text-halo-radius: 2;
     164        text-halo-opacity: 0.9;
     165}
     166
     167way|z4-8[bridge="yes"] {
     168        fill-color: currentColor;
     169}
     170
     171
    129172/***************************************************/
    130173/* ці стилі допоможуть виявляти проблеми з мережею */
    131174/***************************************************/
    132175
    133 /* Відношення е, але немае REF у вея для відношення! */
     176/* Відношення е, але немає REF у вея для відношення! */
    134177relation[type="route"][route="road"] > way[highway][!ref] {
    135178        dashes: 30,5;
     
    137180       
    138181}
     182
    139183}}}
    140