| 235 | | description: "Einfärben von Straßen, Gebäuden und Adressnodes mit gleichem Anfangsbuchstabe des Straßennamens in der gleichen Farbe. (Wenn die nächste stabile JOSM-Version erscheint wird es ein großes Update dieses styles geben!)"; |
| 236 | | } |
| 237 | | |
| 238 | | |
| 239 | | /* highlight areas, ways and nodes*/ |
| 240 | | /* all unknown characters in white color and all rules, which apply to all colors; different rules for different zoom*/ |
| | 236 | description: "Einfärben von Straßen, Gebäuden und Adressnodes mit gleichem Straßennamen in der gleichen Farbe. Schau dir http://josm.openstreetmap.de/wiki/Styles/Coloured_Streets an, um zu lesen, wie man die Einstellungen dieses mappaint styles ändert (postcode an Straßen erlauben, Berücksichtigung von name:prefix und name:suffix) Min. JOSM-Version ist 6909."; |
| | 237 | } |
| | 238 | |
| | 239 | /* create "settings" with boolean properties style_... */ |
| | 240 | |
| | 241 | * |
| | 242 | { |
| | 243 | allow_postcode_on_highway: Boolean_allow_postcode_on_highway#000000; |
| | 244 | style_allow_postcode_on_highway: eval(red(prop(allow_postcode_on_highway)))=1; |
| | 245 | /* default colour is black, that means postcodes on highways are not allowed, that means style_allow_postcode_on_highway=false */ |
| | 246 | } |
| | 247 | |
| | 248 | * |
| | 249 | { |
| | 250 | support_prefix_and_suffix_on_highway_names: Boolean_support_prefix_and_suffix_on_highway_names#000000; |
| | 251 | style_support_prefix_and_suffix_on_highway_names: eval(red(prop(support_prefix_and_suffix_on_highway_names)))=1; |
| | 252 | /* default colour is black, that means prefix and suffix is not supported, that means style_support_prefix_and_suffix_on_highway_names=false */ |
| | 253 | } |
| | 254 | |
| | 255 | /* create crc32checksum */ |
| | 256 | /* streets and pedestrian areas */ |
| | 257 | way[highway][name][highway!="platform"][!prop(style_support_prefix_and_suffix_on_highway_names)], |
| | 258 | way[highway][name][highway!="platform"][prop(style_support_prefix_and_suffix_on_highway_names)][!name:prefix][!name:suffix], |
| | 259 | area[highway="pedestrian"][name][!prop(style_support_prefix_and_suffix_on_highway_names)]:closed, |
| | 260 | area[highway="pedestrian"][name][prop(style_support_prefix_and_suffix_on_highway_names)][!name:prefix][!name:suffix]:closed |
| | 261 | { |
| | 262 | crc: CRC32_checksum(tag(name))/429496.7296; |
| | 263 | } |
| | 264 | way[highway][name][highway!="platform"][prop(style_support_prefix_and_suffix_on_highway_names)][name:prefix][!name:suffix], |
| | 265 | area[highway="pedestrian"][name][prop(style_support_prefix_and_suffix_on_highway_names)][name:prefix][!name:suffix]:closed |
| | 266 | { |
| | 267 | crc: CRC32_checksum(concat(tag("name:prefix"), " ", tag("name")))/429496.7296; |
| | 268 | } |
| | 269 | way[highway][name][highway!="platform"][prop(style_support_prefix_and_suffix_on_highway_names)][!name:prefix][name:suffix], |
| | 270 | area[highway="pedestrian"][name][prop(style_support_prefix_and_suffix_on_highway_names)][!name:prefix][name:suffix]:closed |
| | 271 | { |
| | 272 | crc: CRC32_checksum(concat(tag("name"), " ", tag("name:suffix")))/429496.7296; |
| | 273 | } |
| | 274 | way[highway][name][highway!="platform"][prop(style_support_prefix_and_suffix_on_highway_names)][name:prefix][name:suffix], |
| | 275 | area[highway="pedestrian"][name][prop(style_support_prefix_and_suffix_on_highway_names)][name:prefix][name:suffix]:closed |
| | 276 | { |
| | 277 | crc: CRC32_checksum(concat(tag("name:prefix"), " ", tag("name"), " ", tag("name:suffix")))/429496.7296; |
| | 278 | } |
| | 279 | |
| | 280 | /* associated street relations */ |
| | 281 | relation[type="associatedStreet"][name] > area["addr:housenumber"][!prop(style_support_prefix_and_suffix_on_highway_names)], |
| | 282 | relation[type="associatedStreet"][name] > node["addr:housenumber"][!prop(style_support_prefix_and_suffix_on_highway_names)]::halo, |
| | 283 | relation[type="associatedStreet"][name][!name:prefix][!name:suffix] > area["addr:housenumber"][prop(style_support_prefix_and_suffix_on_highway_names)], |
| | 284 | relation[type="associatedStreet"][name][!name:prefix][!name:suffix] > node["addr:housenumber"][prop(style_support_prefix_and_suffix_on_highway_names)]::halo |
| | 285 | { |
| | 286 | crc: CRC32_checksum(parent_tag("name"))/429496.7296; |
| | 287 | } |
| | 288 | relation[type="associatedStreet"][name][name:prefix][!name:suffix] > area["addr:housenumber"][prop(style_support_prefix_and_suffix_on_highway_names)], |
| | 289 | relation[type="associatedStreet"][name][name:prefix][!name:suffix] > node["addr:housenumber"][prop(style_support_prefix_and_suffix_on_highway_names)]::halo |
| | 290 | { |
| | 291 | crc: CRC32_checksum(concat(parent_tag("name:prefix"), " ", parent_tag("name")))/429496.7296; |
| | 292 | } |
| | 293 | relation[type="associatedStreet"][name][!name:prefix][name:suffix] > area["addr:housenumber"][prop(style_support_prefix_and_suffix_on_highway_names)], |
| | 294 | relation[type="associatedStreet"][name][!name:prefix][name:suffix] > node["addr:housenumber"][prop(style_support_prefix_and_suffix_on_highway_names)]::halo |
| | 295 | { |
| | 296 | crc: CRC32_checksum(concat(parent_tag("name"), " ", parent_tag("name:suffix")))/429496.7296; |
| | 297 | } |
| | 298 | relation[type="associatedStreet"][name][name:prefix][name:suffix] > area["addr:housenumber"][prop(style_support_prefix_and_suffix_on_highway_names)], |
| | 299 | relation[type="associatedStreet"][name][name:prefix][name:suffix] > node["addr:housenumber"][prop(style_support_prefix_and_suffix_on_highway_names)]::halo |
| | 300 | { |
| | 301 | crc: CRC32_checksum(concat(parent_tag("name:prefix"), " ", parent_tag("name"), " ", parent_tag("name:suffix")))/429496.7296; |
| | 302 | } |
| | 303 | |
| | 304 | /* everything else */ |
| | 305 | *["addr:place"] |
| | 306 | { |
| | 307 | crc: CRC32_checksum(tag("addr:place"))/429496.7296; |
| | 308 | } |
| | 309 | *["addr:place"]::halo |
| | 310 | { |
| | 311 | crc: CRC32_checksum(tag("addr:place"))/429496.7296; |
| | 312 | } |
| | 313 | *["addr:street"] |
| | 314 | { |
| | 315 | crc: CRC32_checksum(tag("addr:street"))/429496.7296; |
| | 316 | } |
| | 317 | *["addr:street"]::halo |
| | 318 | { |
| | 319 | crc: CRC32_checksum(tag("addr:street"))/429496.7296; |
| | 320 | } |
| | 321 | |
| | 322 | /* ------------------------------------------------------------------------------------------------------------------------ */ |
| | 323 | |
| | 324 | /* tone down landuse fill-color */ |
| | 325 | |
| | 326 | area[landuse] |
| | 327 | { |
| | 328 | fill-opacity: 0.12; |
| | 329 | } |
| | 330 | |
| | 331 | /* disable place fill-color */ |
| | 332 | |
| | 333 | area[place] |
| | 334 | { |
| | 335 | fill-opacity: 0; |
| | 336 | } |
| | 337 | |
| | 338 | /* tone down garages and other "small" buildings, as they usually do not have addr:*=* tags. */ |
| | 339 | |
| | 340 | area[building=bunker][!"addr:housenumber"][!"addr:street"][!"addr:place"], |
| | 341 | area[building=cabin][!"addr:housenumber"][!"addr:street"][!"addr:place"], |
| | 342 | area[building=farm_auxiliary][!"addr:housenumber"][!"addr:street"][!"addr:place"], |
| | 343 | area[building=garage][!"addr:housenumber"][!"addr:street"][!"addr:place"], |
| | 344 | area[building=garages][!"addr:housenumber"][!"addr:street"][!"addr:place"], |
| | 345 | area[building=hut][!"addr:housenumber"][!"addr:street"][!"addr:place"], |
| | 346 | area[building=roof][!"addr:housenumber"][!"addr:street"][!"addr:place"], |
| | 347 | area[building=shed][!"addr:housenumber"][!"addr:street"][!"addr:place"] |
| | 348 | { |
| | 349 | fill-color: #ffddf1; |
| | 350 | width: 1; |
| | 351 | } |
| | 352 | |
| | 353 | /* ------------------------------------------------------------------------------------------------------------------------ */ |
| | 354 | |
| | 355 | /* highlight address areas, address nodes and streets */ |
| | 356 | /* all rules, which apply to all colors and different rules for different zoom */ |
| | 357 | /* address areas */ |
| 311 | | text: ; |
| 312 | | } |
| 313 | | |
| 314 | | /* all known characters in different colors */ |
| 315 | | |
| 316 | | area["addr:street"=~/^[AАΑ]/], |
| 317 | | relation[type="associatedStreet"][name=~/^[AАΑ]/] > area["addr:housenumber"] |
| 318 | | { |
| 319 | | fill-color: #81c0ff; |
| | 422 | text: ; |
| | 423 | } |
| | 424 | /* pedestrian as area */ |
| | 425 | area|z18-["name"][highway=pedestrian]:closed |
| | 426 | { |
| | 427 | width: 3; |
| | 428 | font-size: 12; |
| | 429 | text-color: #000000; |
| | 430 | text-position: center; |
| | 431 | text: eval(tag("name")); |
| | 432 | text-halo-radius: 2; |
| | 433 | /* fill-color is needed to set it as "area style" to display the names for pedestrian multipolygons correctly. fill-color is set later in the different colors. */ |
| | 434 | fill-opacity: 0.2; |
| | 435 | } |
| | 436 | area|z-17["name"][highway=pedestrian]:closed |
| | 437 | { |
| | 438 | width: 3; |
| | 439 | text: ; |
| | 440 | text-halo-radius: 2; |
| | 441 | /* fill-color is needed to set it as "area style" to display the names for pedestrian multipolygons correctly. fill-color is set later in the different colors. */ |
| | 442 | fill-opacity: 0.2; |
| | 443 | } |
| | 444 | /* display pedestrian areas (not multipolygons) without area=yes as line and not as area */ |
| | 445 | way["highway"="pedestrian"][name][area!=yes] |
| | 446 | { |
| | 447 | text-position: line; |
| | 448 | fill-opacity: 0; |
| | 449 | } |
| | 450 | |
| | 451 | |
| | 452 | /* 33 different special selected colors */ |
| | 453 | area["addr:street"][prop(crc)<303], |
| | 454 | area["addr:place"][prop(crc)<303], |
| | 455 | relation[type="associatedStreet"][prop(crc)<303] > area["addr:housenumber"], |
| | 456 | area["highway"="pedestrian"]["name"][prop(crc)<303]:closed |
| | 457 | { |
| | 458 | color: #ffffff; /* Default value for color is fill-color. Color needs to set nevertheless that pedestrian area multipolygons and areas with "number?" are displayed correctly. */ |
| | 459 | fill-color: #ffffff; |
| | 460 | text-halo-color: #ffffff; |
| | 461 | } |
| | 462 | node["addr:street"][prop(crc)<303]::halo, |
| | 463 | node["addr:place"][prop(crc)<303]::halo, |
| | 464 | relation[type="associatedStreet"][prop(crc)<303] > node["addr:housenumber"]::halo |
| | 465 | { |
| | 466 | symbol-fill-color: #ffffff; |
| | 467 | text-halo-color: #ffffff; |
| | 468 | } |
| | 469 | way["highway"]["name"][prop(crc)<303] |
| | 470 | { |
| | 471 | color: #ffffff; |
| | 472 | text-halo-color: #ffffff; |
| | 473 | } |
| | 474 | /* --------- */ |
| | 475 | area["addr:street"][prop(crc)>=303][prop(crc)<606], |
| | 476 | area["addr:place"][prop(crc)>=303][prop(crc)<606], |
| | 477 | relation[type="associatedStreet"][prop(crc)>=303][prop(crc)<606] > area["addr:housenumber"], |
| | 478 | area["highway"="pedestrian"]["name"][prop(crc)>=303][prop(crc)<606]:closed |
| | 479 | { |
| | 480 | color: #b88142; |
| | 481 | fill-color: #b88142; |
| | 482 | text-halo-color: #b88142; |
| | 483 | } |
| | 484 | node["addr:street"][prop(crc)>=303][prop(crc)<606]::halo, |
| | 485 | node["addr:place"][prop(crc)>=303][prop(crc)<606]::halo, |
| | 486 | relation[type="associatedStreet"][prop(crc)>=303][prop(crc)<606] > node["addr:housenumber"]::halo |
| | 487 | { |
| | 488 | symbol-fill-color: #b88142; |
| | 489 | text-halo-color: #b88142; |
| | 490 | } |
| | 491 | way["highway"]["name"][prop(crc)>=303][prop(crc)<606] |
| | 492 | { |
| | 493 | color: #b88142; |
| | 494 | text-halo-color: #b88142; |
| | 495 | } |
| | 496 | /* --------- */ |
| | 497 | area["addr:street"][prop(crc)>=606][prop(crc)<909], |
| | 498 | area["addr:place"][prop(crc)>=606][prop(crc)<909], |
| | 499 | relation[type="associatedStreet"][prop(crc)>=606][prop(crc)<909] > area["addr:housenumber"], |
| | 500 | area["highway"="pedestrian"]["name"][prop(crc)>=606][prop(crc)<909]:closed |
| | 501 | { |
| | 502 | color: #a3fe8f; |
| | 503 | fill-color: #a3fe8f; |
| | 504 | text-halo-color: #a3fe8f; |
| | 505 | } |
| | 506 | node["addr:street"][prop(crc)>=606][prop(crc)<909]::halo, |
| | 507 | node["addr:place"][prop(crc)>=606][prop(crc)<909]::halo, |
| | 508 | relation[type="associatedStreet"][prop(crc)>=606][prop(crc)<909] > node["addr:housenumber"]::halo |
| | 509 | { |
| | 510 | symbol-fill-color: #a3fe8f; |
| | 511 | text-halo-color: #a3fe8f; |
| | 512 | } |
| | 513 | way["highway"]["name"][prop(crc)>=606][prop(crc)<909] |
| | 514 | { |
| | 515 | color: #a3fe8f; |
| | 516 | text-halo-color: #a3fe8f; |
| | 517 | } |
| | 518 | /* --------- */ |
| | 519 | area["addr:street"][prop(crc)>=909][prop(crc)<1212], |
| | 520 | area["addr:place"][prop(crc)>=909][prop(crc)<1212], |
| | 521 | relation[type="associatedStreet"][prop(crc)>=909][prop(crc)<1212] > area["addr:housenumber"], |
| | 522 | area["highway"="pedestrian"]["name"][prop(crc)>=909][prop(crc)<1212]:closed |
| | 523 | { |
| | 524 | color: #b8674c; |
| | 525 | fill-color: #b8674c; |
| | 526 | text-halo-color: #b8674c; |
| | 527 | } |
| | 528 | node["addr:street"][prop(crc)>=909][prop(crc)<1212]::halo, |
| | 529 | node["addr:place"][prop(crc)>=909][prop(crc)<1212]::halo, |
| | 530 | relation[type="associatedStreet"][prop(crc)>=909][prop(crc)<1212] > node["addr:housenumber"]::halo |
| | 531 | { |
| | 532 | symbol-fill-color: #b8674c; |
| | 533 | text-halo-color: #b8674c; |
| | 534 | } |
| | 535 | way["highway"]["name"][prop(crc)>=909][prop(crc)<1212] |
| | 536 | { |
| | 537 | color: #b8674c; |
| | 538 | text-halo-color: #b8674c; |
| | 539 | } |
| | 540 | /* --------- */ |
| | 541 | area["addr:street"][prop(crc)>=1212][prop(crc)<1515], |
| | 542 | area["addr:place"][prop(crc)>=1212][prop(crc)<1515], |
| | 543 | relation[type="associatedStreet"][prop(crc)>=1212][prop(crc)<1515] > area["addr:housenumber"], |
| | 544 | area["highway"="pedestrian"]["name"][prop(crc)>=1212][prop(crc)<1515]:closed |
| | 545 | { |
| | 546 | color: #fcff5c; |
| | 547 | fill-color: #fcff5c; |
| | 548 | text-halo-color: #fcff5c; |
| | 549 | } |
| | 550 | node["addr:street"][prop(crc)>=1212][prop(crc)<1515]::halo, |
| | 551 | node["addr:place"][prop(crc)>=1212][prop(crc)<1515]::halo, |
| | 552 | relation[type="associatedStreet"][prop(crc)>=1212][prop(crc)<1515] > node["addr:housenumber"]::halo |
| | 553 | { |
| | 554 | symbol-fill-color: #fcff5c; |
| | 555 | text-halo-color: #fcff5c; |
| | 556 | } |
| | 557 | way["highway"]["name"][prop(crc)>=1212][prop(crc)<1515] |
| | 558 | { |
| | 559 | color: #fcff5c; |
| | 560 | text-halo-color: #fcff5c; |
| | 561 | } |
| | 562 | /* --------- */ |
| | 563 | area["addr:street"][prop(crc)>=1515][prop(crc)<1818], |
| | 564 | area["addr:place"][prop(crc)>=1515][prop(crc)<1818], |
| | 565 | relation[type="associatedStreet"][prop(crc)>=1515][prop(crc)<1818] > area["addr:housenumber"], |
| | 566 | area["highway"="pedestrian"]["name"][prop(crc)>=1515][prop(crc)<1818]:closed |
| | 567 | { |
| | 568 | color: #81c0ff; |
| | 569 | fill-color: #81c0ff; |
| | 570 | text-halo-color: #81c0ff; |
| | 571 | } |
| | 572 | node["addr:street"][prop(crc)>=1515][prop(crc)<1818]::halo, |
| | 573 | node["addr:place"][prop(crc)>=1515][prop(crc)<1818]::halo, |
| | 574 | relation[type="associatedStreet"][prop(crc)>=1515][prop(crc)<1818] > node["addr:housenumber"]::halo |
| | 575 | { |
| | 576 | symbol-fill-color: #81c0ff; |
| | 577 | text-halo-color: #81c0ff; |
| | 578 | } |
| | 579 | way["highway"]["name"][prop(crc)>=1515][prop(crc)<1818] |
| | 580 | { |
| 323 | | node["addr:street"=~/^[AАΑ]/]::halo, |
| 324 | | relation[type="associatedStreet"][name=~/^[AАΑ]/] > node["addr:housenumber"]::halo |
| 325 | | { |
| 326 | | symbol-fill-color: #81c0ff; |
| 327 | | text-halo-color: #81c0ff; |
| 328 | | } |
| 329 | | way["highway"]["name"=~/^[AАΑ]/] |
| 330 | | { |
| 331 | | color: #81c0ff; |
| 332 | | text-halo-color: #81c0ff; |
| 333 | | } |
| 334 | | |
| 335 | | area["addr:street"=~/^[Ä1БΒÁÀÂÆ]/], |
| 336 | | relation[type="associatedStreet"][name=~/^[Ä1БΒÁÀÂÆ]/] > area["addr:housenumber"] |
| 337 | | { |
| 338 | | fill-color: #e1bd6a; |
| | 584 | /* --------- */ |
| | 585 | area["addr:street"][prop(crc)>=1818][prop(crc)<2121], |
| | 586 | area["addr:place"][prop(crc)>=1818][prop(crc)<2121], |
| | 587 | relation[type="associatedStreet"][prop(crc)>=1818][prop(crc)<2121] > area["addr:housenumber"], |
| | 588 | area["highway"="pedestrian"]["name"][prop(crc)>=1818][prop(crc)<2121]:closed |
| | 589 | { |
| | 590 | color: #6b8e23; |
| | 591 | fill-color: #6b8e23; |
| | 592 | text-halo-color: #6b8e23; |
| | 593 | } |
| | 594 | node["addr:street"][prop(crc)>=1818][prop(crc)<2121]::halo, |
| | 595 | node["addr:place"][prop(crc)>=1818][prop(crc)<2121]::halo, |
| | 596 | relation[type="associatedStreet"][prop(crc)>=1818][prop(crc)<2121] > node["addr:housenumber"]::halo |
| | 597 | { |
| | 598 | symbol-fill-color: #6b8e23; |
| | 599 | text-halo-color: #6b8e23; |
| | 600 | } |
| | 601 | way["highway"]["name"][prop(crc)>=1818][prop(crc)<2121] |
| | 602 | { |
| | 603 | color: #6b8e23; |
| | 604 | text-halo-color: #6b8e23; |
| | 605 | } |
| | 606 | /* --------- */ |
| | 607 | area["addr:street"][prop(crc)>=2121][prop(crc)<2424], |
| | 608 | area["addr:place"][prop(crc)>=2121][prop(crc)<2424], |
| | 609 | relation[type="associatedStreet"][prop(crc)>=2121][prop(crc)<2424] > area["addr:housenumber"], |
| | 610 | area["highway"="pedestrian"]["name"][prop(crc)>=2121][prop(crc)<2424]:closed |
| | 611 | { |
| | 612 | color: #e1bd6a; |
| | 613 | fill-color: #e1bd6a; |
| | 614 | text-halo-color: #e1bd6a; |
| | 615 | } |
| | 616 | node["addr:street"][prop(crc)>=2121][prop(crc)<2424]::halo, |
| | 617 | node["addr:place"][prop(crc)>=2121][prop(crc)<2424]::halo, |
| | 618 | relation[type="associatedStreet"][prop(crc)>=2121][prop(crc)<2424] > node["addr:housenumber"]::halo |
| | 619 | { |
| | 620 | symbol-fill-color: #e1bd6a; |
| | 621 | text-halo-color: #e1bd6a; |
| | 622 | } |
| | 623 | way["highway"]["name"][prop(crc)>=2121][prop(crc)<2424] |
| | 624 | { |
| 342 | | node["addr:street"=~/^[Ä1БΒÁÀÂÆ]/]::halo, |
| 343 | | relation[type="associatedStreet"][name=~/^[Ä1БΒÁÀÂÆ]/] > node["addr:housenumber"]::halo |
| 344 | | { |
| 345 | | symbol-fill-color: #e1bd6a; |
| 346 | | text-halo-color: #e1bd6a; |
| 347 | | } |
| 348 | | way["highway"]["name"=~/^[Ä1БΒÁÀÂÆ]/] |
| 349 | | { |
| 350 | | color: #e1bd6a; |
| 351 | | text-halo-color: #e1bd6a; |
| 352 | | } |
| 353 | | |
| 354 | | area["addr:street"=~/^[BВΓ]/], |
| 355 | | relation[type="associatedStreet"][name=~/^[BВΓ]/] > area["addr:housenumber"] |
| 356 | | { |
| 357 | | fill-color: #7fffd4; |
| | 628 | /* --------- */ |
| | 629 | area["addr:street"][prop(crc)>=2424][prop(crc)<2727], |
| | 630 | area["addr:place"][prop(crc)>=2424][prop(crc)<2727], |
| | 631 | relation[type="associatedStreet"][prop(crc)>=2424][prop(crc)<2727] > area["addr:housenumber"], |
| | 632 | area["highway"="pedestrian"]["name"][prop(crc)>=2424][prop(crc)<2727]:closed |
| | 633 | { |
| | 634 | color: #7fffd4; |
| | 635 | fill-color: #7fffd4; |
| | 636 | text-halo-color: #7fffd4; |
| | 637 | } |
| | 638 | node["addr:street"][prop(crc)>=2424][prop(crc)<2727]::halo, |
| | 639 | node["addr:place"][prop(crc)>=2424][prop(crc)<2727]::halo, |
| | 640 | relation[type="associatedStreet"][prop(crc)>=2424][prop(crc)<2727] > node["addr:housenumber"]::halo |
| | 641 | { |
| | 642 | symbol-fill-color: #7fffd4; |
| | 643 | text-halo-color: #7fffd4; |
| | 644 | } |
| | 645 | way["highway"]["name"][prop(crc)>=2424][prop(crc)<2727] |
| | 646 | { |
| 361 | | node["addr:street"=~/^[BВΓ]/]::halo, |
| 362 | | relation[type="associatedStreet"][name=~/^[BВΓ]/] > node["addr:housenumber"]::halo |
| 363 | | { |
| 364 | | symbol-fill-color: #7fffd4; |
| 365 | | text-halo-color: #7fffd4; |
| 366 | | } |
| 367 | | way["highway"]["name"=~/^[BВΓ]/] |
| 368 | | { |
| 369 | | color: #7fffd4; |
| 370 | | text-halo-color: #7fffd4; |
| 371 | | } |
| 372 | | |
| 373 | | area["addr:street"=~/^[CГΔÇČ]/], |
| 374 | | relation[type="associatedStreet"][name=~/^[CГΔÇČ]/] > area["addr:housenumber"] |
| 375 | | { |
| 376 | | fill-color: #8a2be2; |
| | 650 | /* --------- */ |
| | 651 | area["addr:street"][prop(crc)>=2727][prop(crc)<3030], |
| | 652 | area["addr:place"][prop(crc)>=2727][prop(crc)<3030], |
| | 653 | relation[type="associatedStreet"][prop(crc)>=2727][prop(crc)<3030] > area["addr:housenumber"], |
| | 654 | area["highway"="pedestrian"]["name"][prop(crc)>=2727][prop(crc)<3030]:closed |
| | 655 | { |
| | 656 | color: #8a2be2; |
| | 657 | fill-color: #8a2be2; |
| | 658 | text-halo-color: #8a2be2; |
| | 659 | } |
| | 660 | node["addr:street"][prop(crc)>=2727][prop(crc)<3030]::halo, |
| | 661 | node["addr:place"][prop(crc)>=2727][prop(crc)<3030]::halo, |
| | 662 | relation[type="associatedStreet"][prop(crc)>=2727][prop(crc)<3030] > node["addr:housenumber"]::halo |
| | 663 | { |
| | 664 | symbol-fill-color: #8a2be2; |
| | 665 | text-halo-color: #8a2be2; |
| | 666 | } |
| | 667 | way["highway"]["name"][prop(crc)>=2727][prop(crc)<3030] |
| | 668 | { |
| 380 | | node["addr:street"=~/^[CГΔÇČ]/]::halo, |
| 381 | | relation[type="associatedStreet"][name=~/^[CГΔÇČ]/] > node["addr:housenumber"]::halo |
| 382 | | { |
| 383 | | symbol-fill-color: #8a2be2; |
| 384 | | text-halo-color: #8a2be2; |
| 385 | | } |
| 386 | | way["highway"]["name"=~/^[CГΔÇČ]/] |
| 387 | | { |
| 388 | | color: #8a2be2; |
| 389 | | text-halo-color: #8a2be2; |
| 390 | | } |
| 391 | | |
| 392 | | area["addr:street"=~/^[DДΕ]/], |
| 393 | | relation[type="associatedStreet"][name=~/^[DДΕ]/] > area["addr:housenumber"] |
| 394 | | { |
| 395 | | fill-color: #a52a2a; |
| | 672 | /* --------- */ |
| | 673 | area["addr:street"][prop(crc)>=3030][prop(crc)<3333], |
| | 674 | area["addr:place"][prop(crc)>=3030][prop(crc)<3333], |
| | 675 | relation[type="associatedStreet"][prop(crc)>=3030][prop(crc)<3333] > area["addr:housenumber"], |
| | 676 | area["highway"="pedestrian"]["name"][prop(crc)>=3030][prop(crc)<3333]:closed |
| | 677 | { |
| | 678 | color: #a52a2a; |
| | 679 | fill-color: #a52a2a; |
| | 680 | text-halo-color: #a52a2a; |
| | 681 | } |
| | 682 | node["addr:street"][prop(crc)>=3030][prop(crc)<3333]::halo, |
| | 683 | node["addr:place"][prop(crc)>=3030][prop(crc)<3333]::halo, |
| | 684 | relation[type="associatedStreet"][prop(crc)>=3030][prop(crc)<3333] > node["addr:housenumber"]::halo |
| | 685 | { |
| | 686 | symbol-fill-color: #a52a2a; |
| | 687 | text-halo-color: #a52a2a; |
| | 688 | } |
| | 689 | way["highway"]["name"][prop(crc)>=3030][prop(crc)<3333] |
| | 690 | { |
| 399 | | node["addr:street"=~/^[DДΕ]/]::halo, |
| 400 | | relation[type="associatedStreet"][name=~/^[DДΕ]/] > node["addr:housenumber"]::halo |
| 401 | | { |
| 402 | | symbol-fill-color: #a52a2a; |
| 403 | | text-halo-color: #a52a2a; |
| 404 | | } |
| 405 | | way["highway"]["name"=~/^[DДΕ]/] |
| 406 | | { |
| 407 | | color: #a52a2a; |
| 408 | | text-halo-color: #a52a2a; |
| 409 | | } |
| 410 | | |
| 411 | | area["addr:street"=~/^[EЕЁΖÊÉÈË]/], |
| 412 | | relation[type="associatedStreet"][name=~/^[EЕЁΖÊÉÈË]/] > area["addr:housenumber"] |
| 413 | | { |
| 414 | | fill-color: #f0b9a6; |
| | 694 | /* --------- */ |
| | 695 | area["addr:street"][prop(crc)>=3333][prop(crc)<3636], |
| | 696 | area["addr:place"][prop(crc)>=3333][prop(crc)<3636], |
| | 697 | relation[type="associatedStreet"][prop(crc)>=3333][prop(crc)<3636] > area["addr:housenumber"], |
| | 698 | area["highway"="pedestrian"]["name"][prop(crc)>=3333][prop(crc)<3636]:closed |
| | 699 | { |
| | 700 | color: #f0b9a6; |
| | 701 | fill-color: #f0b9a6; |
| | 702 | text-halo-color: #f0b9a6; |
| | 703 | } |
| | 704 | node["addr:street"][prop(crc)>=3333][prop(crc)<3636]::halo, |
| | 705 | node["addr:place"][prop(crc)>=3333][prop(crc)<3636]::halo, |
| | 706 | relation[type="associatedStreet"][prop(crc)>=3333][prop(crc)<3636] > node["addr:housenumber"]::halo |
| | 707 | { |
| | 708 | symbol-fill-color: #f0b9a6; |
| | 709 | text-halo-color: #f0b9a6; |
| | 710 | } |
| | 711 | way["highway"]["name"][prop(crc)>=3333][prop(crc)<3636] |
| | 712 | { |
| 418 | | node["addr:street"=~/^[EЕЁΖÊÉÈË]/]::halo, |
| 419 | | relation[type="associatedStreet"][name=~/^[EЕЁΖÊÉÈË]/] > node["addr:housenumber"]::halo |
| 420 | | { |
| 421 | | symbol-fill-color: #f0b9a6; |
| 422 | | text-halo-color: #f0b9a6; |
| 423 | | } |
| 424 | | way["highway"]["name"=~/^[EЕЁΖÊÉÈË]/] |
| 425 | | { |
| 426 | | color: #f0b9a6; |
| 427 | | text-halo-color: #f0b9a6; |
| 428 | | } |
| 429 | | |
| 430 | | area["addr:street"=~/^[FЖΗ]/], |
| 431 | | relation[type="associatedStreet"][name=~/^[FЖΗ]/] > area["addr:housenumber"] |
| 432 | | { |
| 433 | | fill-color: #8fbc8f; |
| | 716 | /* --------- */ |
| | 717 | area["addr:street"][prop(crc)>=3636][prop(crc)<3939], |
| | 718 | area["addr:place"][prop(crc)>=3636][prop(crc)<3939], |
| | 719 | relation[type="associatedStreet"][prop(crc)>=3636][prop(crc)<3939] > area["addr:housenumber"], |
| | 720 | area["highway"="pedestrian"]["name"][prop(crc)>=3636][prop(crc)<3939]:closed |
| | 721 | { |
| | 722 | color: #8fbc8f; |
| | 723 | fill-color: #8fbc8f; |
| | 724 | text-halo-color: #8fbc8f; |
| | 725 | } |
| | 726 | node["addr:street"][prop(crc)>=3636][prop(crc)<3939]::halo, |
| | 727 | node["addr:place"][prop(crc)>=3636][prop(crc)<3939]::halo, |
| | 728 | relation[type="associatedStreet"][prop(crc)>=3636][prop(crc)<3939] > node["addr:housenumber"]::halo |
| | 729 | { |
| | 730 | symbol-fill-color: #8fbc8f; |
| | 731 | text-halo-color: #8fbc8f; |
| | 732 | } |
| | 733 | way["highway"]["name"][prop(crc)>=3636][prop(crc)<3939] |
| | 734 | { |
| 437 | | node["addr:street"=~/^[FЖΗ]/]::halo, |
| 438 | | relation[type="associatedStreet"][name=~/^[FЖΗ]/] > node["addr:housenumber"]::halo |
| 439 | | { |
| 440 | | symbol-fill-color: #8fbc8f; |
| 441 | | text-halo-color: #8fbc8f; |
| 442 | | } |
| 443 | | way["highway"]["name"=~/^[FЖΗ]/] |
| 444 | | { |
| 445 | | color: #8fbc8f; |
| 446 | | text-halo-color: #8fbc8f; |
| 447 | | } |
| 448 | | |
| 449 | | area["addr:street"=~/^[GЗĞ]/], |
| 450 | | relation[type="associatedStreet"][name=~/^[GЗĞ]/] > area["addr:housenumber"] |
| 451 | | { |
| 452 | | fill-color: #1b7777; |
| | 738 | /* --------- */ |
| | 739 | area["addr:street"][prop(crc)>=3939][prop(crc)<4242], |
| | 740 | area["addr:place"][prop(crc)>=3939][prop(crc)<4242], |
| | 741 | relation[type="associatedStreet"][prop(crc)>=3939][prop(crc)<4242] > area["addr:housenumber"], |
| | 742 | area["highway"="pedestrian"]["name"][prop(crc)>=3939][prop(crc)<4242]:closed |
| | 743 | { |
| | 744 | color: #1b7777; |
| | 745 | fill-color: #1b7777; |
| | 746 | text-halo-color: #1b7777; |
| | 747 | } |
| | 748 | node["addr:street"][prop(crc)>=3939][prop(crc)<4242]::halo, |
| | 749 | node["addr:place"][prop(crc)>=3939][prop(crc)<4242]::halo, |
| | 750 | relation[type="associatedStreet"][prop(crc)>=3939][prop(crc)<4242] > node["addr:housenumber"]::halo |
| | 751 | { |
| | 752 | symbol-fill-color: #1b7777; |
| | 753 | text-halo-color: #1b7777; |
| | 754 | } |
| | 755 | way["highway"]["name"][prop(crc)>=3939][prop(crc)<4242] |
| | 756 | { |
| 456 | | node["addr:street"=~/^[GЗĞ]/]::halo, |
| 457 | | relation[type="associatedStreet"][name=~/^[GЗĞ]/] > node["addr:housenumber"]::halo |
| 458 | | { |
| 459 | | symbol-fill-color: #1b7777; |
| 460 | | text-halo-color: #1b7777; |
| 461 | | } |
| 462 | | way["highway"]["name"=~/^[GЗĞ]/] |
| 463 | | { |
| 464 | | color: #1b7777; |
| 465 | | text-halo-color: #1b7777; |
| 466 | | } |
| 467 | | |
| 468 | | area["addr:street"=~/^[HИΘ]/], |
| 469 | | relation[type="associatedStreet"][name=~/^[HИΘ]/] > area["addr:housenumber"] |
| 470 | | { |
| 471 | | fill-color: #ff1493; |
| | 760 | /* --------- */ |
| | 761 | area["addr:street"][prop(crc)>=4242][prop(crc)<4545], |
| | 762 | area["addr:place"][prop(crc)>=4242][prop(crc)<4545], |
| | 763 | relation[type="associatedStreet"][prop(crc)>=4242][prop(crc)<4545] > area["addr:housenumber"], |
| | 764 | area["highway"="pedestrian"]["name"][prop(crc)>=4242][prop(crc)<4545]:closed |
| | 765 | { |
| | 766 | color: #ff1493; |
| | 767 | fill-color: #ff1493; |
| | 768 | text-halo-color: #ff1493; |
| | 769 | } |
| | 770 | node["addr:street"][prop(crc)>=4242][prop(crc)<4545]::halo, |
| | 771 | node["addr:place"][prop(crc)>=4242][prop(crc)<4545]::halo, |
| | 772 | relation[type="associatedStreet"][prop(crc)>=4242][prop(crc)<4545] > node["addr:housenumber"]::halo |
| | 773 | { |
| | 774 | symbol-fill-color: #ff1493; |
| | 775 | text-halo-color: #ff1493; |
| | 776 | } |
| | 777 | way["highway"]["name"][prop(crc)>=4242][prop(crc)<4545] |
| | 778 | { |
| 475 | | node["addr:street"=~/^[HИΘ]/]::halo, |
| 476 | | relation[type="associatedStreet"][name=~/^[HИΘ]/] > node["addr:housenumber"]::halo |
| 477 | | { |
| 478 | | symbol-fill-color: #ff1493; |
| 479 | | text-halo-color: #ff1493; |
| 480 | | } |
| 481 | | way["highway"]["name"=~/^[HИΘ]/] |
| 482 | | { |
| 483 | | color: #ff1493; |
| 484 | | text-halo-color: #ff1493; |
| 485 | | } |
| 486 | | |
| 487 | | area["addr:street"=~/^[IЙΙÎ]/], |
| 488 | | relation[type="associatedStreet"][name=~/^[IЙΙÎ]/] > area["addr:housenumber"] |
| 489 | | { |
| 490 | | fill-color: #0072e2; |
| | 782 | /* --------- */ |
| | 783 | area["addr:street"][prop(crc)>=4545][prop(crc)<4848], |
| | 784 | area["addr:place"][prop(crc)>=4545][prop(crc)<4848], |
| | 785 | relation[type="associatedStreet"][prop(crc)>=4545][prop(crc)<4848] > area["addr:housenumber"], |
| | 786 | area["highway"="pedestrian"]["name"][prop(crc)>=4545][prop(crc)<4848]:closed |
| | 787 | { |
| | 788 | color: #0072e2; |
| | 789 | fill-color: #0072e2; |
| | 790 | text-halo-color: #0072e2; |
| | 791 | } |
| | 792 | node["addr:street"][prop(crc)>=4545][prop(crc)<4848]::halo, |
| | 793 | node["addr:place"][prop(crc)>=4545][prop(crc)<4848]::halo, |
| | 794 | relation[type="associatedStreet"][prop(crc)>=4545][prop(crc)<4848] > node["addr:housenumber"]::halo |
| | 795 | { |
| | 796 | symbol-fill-color: #0072e2; |
| | 797 | text-halo-color: #0072e2; |
| | 798 | } |
| | 799 | way["highway"]["name"][prop(crc)>=4545][prop(crc)<4848] |
| | 800 | { |
| 494 | | node["addr:street"=~/^[IЙΙÎ]/]::halo, |
| 495 | | relation[type="associatedStreet"][name=~/^[IЙΙÎ]/] > node["addr:housenumber"]::halo |
| 496 | | { |
| 497 | | symbol-fill-color: #0072e2; |
| 498 | | text-halo-color: #0072e2; |
| 499 | | } |
| 500 | | way["highway"]["name"=~/^[IЙΙÎ]/] |
| 501 | | { |
| 502 | | color: #0072e2; |
| 503 | | text-halo-color: #0072e2; |
| 504 | | } |
| 505 | | |
| 506 | | area["addr:street"=~/^[J2КΚ]/], |
| 507 | | relation[type="associatedStreet"][name=~/^[J2КΚ]/] > area["addr:housenumber"] |
| 508 | | { |
| 509 | | fill-color: #228b22; |
| | 804 | /* --------- */ |
| | 805 | area["addr:street"][prop(crc)>=4848][prop(crc)<5151], |
| | 806 | area["addr:place"][prop(crc)>=4848][prop(crc)<5151], |
| | 807 | relation[type="associatedStreet"][prop(crc)>=4848][prop(crc)<5151] > area["addr:housenumber"], |
| | 808 | area["highway"="pedestrian"]["name"][prop(crc)>=4848][prop(crc)<5151]:closed |
| | 809 | { |
| | 810 | color: #228b22; |
| | 811 | fill-color: #228b22; |
| | 812 | text-halo-color: #228b22; |
| | 813 | } |
| | 814 | node["addr:street"][prop(crc)>=4848][prop(crc)<5151]::halo, |
| | 815 | node["addr:place"][prop(crc)>=4848][prop(crc)<5151]::halo, |
| | 816 | relation[type="associatedStreet"][prop(crc)>=4848][prop(crc)<5151] > node["addr:housenumber"]::halo |
| | 817 | { |
| | 818 | symbol-fill-color: #228b22; |
| | 819 | text-halo-color: #228b22; |
| | 820 | } |
| | 821 | way["highway"]["name"][prop(crc)>=4848][prop(crc)<5151] |
| | 822 | { |
| 513 | | node["addr:street"=~/^[J2КΚ]/]::halo, |
| 514 | | relation[type="associatedStreet"][name=~/^[J2КΚ]/] > node["addr:housenumber"]::halo |
| 515 | | { |
| 516 | | symbol-fill-color: #228b22; |
| 517 | | text-halo-color: #228b22; |
| 518 | | } |
| 519 | | way["highway"]["name"=~/^[J2КΚ]/] |
| 520 | | { |
| 521 | | color: #228b22; |
| 522 | | text-halo-color: #228b22; |
| 523 | | } |
| 524 | | |
| 525 | | area["addr:street"=~/^[KЛΛ]/], |
| 526 | | relation[type="associatedStreet"][name=~/^[KЛΛ]/] > area["addr:housenumber"] |
| 527 | | { |
| 528 | | fill-color: #ffd700; |
| 529 | | color: #ffd700; |
| 530 | | text-halo-color: #ffd700; |
| 531 | | } |
| 532 | | node["addr:street"=~/^[KЛΛ]/]::halo, |
| 533 | | relation[type="associatedStreet"][name=~/^[KЛΛ]/] > node["addr:housenumber"]::halo |
| 534 | | { |
| 535 | | symbol-fill-color: #ffd700; |
| 536 | | text-halo-color: #ffd700; |
| 537 | | } |
| 538 | | way["highway"]["name"=~/^[KЛΛ]/] |
| 539 | | { |
| 540 | | color: #ffd700; |
| 541 | | text-halo-color: #ffd700; |
| 542 | | } |
| 543 | | |
| 544 | | area["addr:street"=~/^[LМΜŁ]/], |
| 545 | | relation[type="associatedStreet"][name=~/^[LМΜŁ]/] > area["addr:housenumber"] |
| 546 | | { |
| 547 | | fill-color: #BF9017; |
| | 826 | /* --------- */ |
| | 827 | area["addr:street"][prop(crc)>=5151][prop(crc)<5454], |
| | 828 | area["addr:place"][prop(crc)>=5151][prop(crc)<5454], |
| | 829 | relation[type="associatedStreet"][prop(crc)>=5151][prop(crc)<5454] > area["addr:housenumber"], |
| | 830 | area["highway"="pedestrian"]["name"][prop(crc)>=5151][prop(crc)<5454]:closed |
| | 831 | { |
| | 832 | color: #ffe400; |
| | 833 | fill-color: #ffe400; |
| | 834 | text-halo-color: #ffe400; |
| | 835 | } |
| | 836 | node["addr:street"][prop(crc)>=5151][prop(crc)<5454]::halo, |
| | 837 | node["addr:place"][prop(crc)>=5151][prop(crc)<5454]::halo, |
| | 838 | relation[type="associatedStreet"][prop(crc)>=5151][prop(crc)<5454] > node["addr:housenumber"]::halo |
| | 839 | { |
| | 840 | symbol-fill-color: #ffe400; |
| | 841 | text-halo-color: #ffe400; |
| | 842 | } |
| | 843 | way["highway"]["name"][prop(crc)>=5151][prop(crc)<5454] |
| | 844 | { |
| | 845 | color: #ffe400; |
| | 846 | text-halo-color: #ffe400; |
| | 847 | } |
| | 848 | /* --------- */ |
| | 849 | area["addr:street"][prop(crc)>=5454][prop(crc)<5757], |
| | 850 | area["addr:place"][prop(crc)>=5454][prop(crc)<5757], |
| | 851 | relation[type="associatedStreet"][prop(crc)>=5454][prop(crc)<5757] > area["addr:housenumber"], |
| | 852 | area["highway"="pedestrian"]["name"][prop(crc)>=5454][prop(crc)<5757]:closed |
| | 853 | { |
| | 854 | color: #BF9017; |
| | 855 | fill-color: #BF9017; |
| | 856 | text-halo-color: #BF9017; |
| | 857 | } |
| | 858 | node["addr:street"][prop(crc)>=5454][prop(crc)<5757]::halo, |
| | 859 | node["addr:place"][prop(crc)>=5454][prop(crc)<5757]::halo, |
| | 860 | relation[type="associatedStreet"][prop(crc)>=5454][prop(crc)<5757] > node["addr:housenumber"]::halo |
| | 861 | { |
| | 862 | symbol-fill-color: #BF9017; |
| | 863 | text-halo-color: #BF9017; |
| | 864 | } |
| | 865 | way["highway"]["name"][prop(crc)>=5454][prop(crc)<5757] |
| | 866 | { |
| 551 | | node["addr:street"=~/^[LМΜŁ]/]::halo, |
| 552 | | relation[type="associatedStreet"][name=~/^[LМΜŁ]/] > node["addr:housenumber"]::halo |
| 553 | | { |
| 554 | | symbol-fill-color: #BF9017; |
| 555 | | text-halo-color: #BF9017; |
| 556 | | } |
| 557 | | way["highway"]["name"=~/^[LМΜŁ]/] |
| 558 | | { |
| 559 | | color: #BF9017; |
| 560 | | text-halo-color:#BF9017; |
| 561 | | } |
| 562 | | |
| 563 | | area["addr:street"=~/^[MНΝ]/], |
| 564 | | relation[type="associatedStreet"][name=~/^[MНΝ]/] > area["addr:housenumber"] |
| 565 | | { |
| 566 | | fill-color: #adff2f; |
| | 870 | /* --------- */ |
| | 871 | area["addr:street"][prop(crc)>=5757][prop(crc)<6060], |
| | 872 | area["addr:place"][prop(crc)>=5757][prop(crc)<6060], |
| | 873 | relation[type="associatedStreet"][prop(crc)>=5757][prop(crc)<6060] > area["addr:housenumber"], |
| | 874 | area["highway"="pedestrian"]["name"][prop(crc)>=5757][prop(crc)<6060]:closed |
| | 875 | { |
| | 876 | color: #adff2f; |
| | 877 | fill-color: #adff2f; |
| | 878 | text-halo-color: #adff2f; |
| | 879 | } |
| | 880 | node["addr:street"][prop(crc)>=5757][prop(crc)<6060]::halo, |
| | 881 | node["addr:place"][prop(crc)>=5757][prop(crc)<6060]::halo, |
| | 882 | relation[type="associatedStreet"][prop(crc)>=5757][prop(crc)<6060] > node["addr:housenumber"]::halo |
| | 883 | { |
| | 884 | symbol-fill-color: #adff2f; |
| | 885 | text-halo-color: #adff2f; |
| | 886 | } |
| | 887 | way["highway"]["name"][prop(crc)>=5757][prop(crc)<6060] |
| | 888 | { |
| 570 | | node["addr:street"=~/^[MНΝ]/]::halo, |
| 571 | | relation[type="associatedStreet"][name=~/^[MНΝ]/] > node["addr:housenumber"]::halo |
| 572 | | { |
| 573 | | symbol-fill-color: #adff2f; |
| 574 | | text-halo-color: #adff2f; |
| 575 | | } |
| 576 | | way["highway"]["name"=~/^[MНΝ]/] |
| 577 | | { |
| 578 | | color: #adff2f; |
| 579 | | text-halo-color: #adff2f; |
| 580 | | } |
| 581 | | |
| 582 | | area["addr:street"=~/^[NОΞÑ]/], |
| 583 | | relation[type="associatedStreet"][name=~/^[NОΞÑ]/] > area["addr:housenumber"] |
| 584 | | { |
| 585 | | fill-color: #ff69b4; |
| | 892 | /* --------- */ |
| | 893 | area["addr:street"][prop(crc)>=6060][prop(crc)<6363], |
| | 894 | area["addr:place"][prop(crc)>=6060][prop(crc)<6363], |
| | 895 | relation[type="associatedStreet"][prop(crc)>=6060][prop(crc)<6363] > area["addr:housenumber"], |
| | 896 | area["highway"="pedestrian"]["name"][prop(crc)>=6060][prop(crc)<6363]:closed |
| | 897 | { |
| | 898 | color: #ff69b4; |
| | 899 | fill-color: #ff69b4; |
| | 900 | text-halo-color: #ff69b4; |
| | 901 | } |
| | 902 | node["addr:street"][prop(crc)>=6060][prop(crc)<6363]::halo, |
| | 903 | node["addr:place"][prop(crc)>=6060][prop(crc)<6363]::halo, |
| | 904 | relation[type="associatedStreet"][prop(crc)>=6060][prop(crc)<6363] > node["addr:housenumber"]::halo |
| | 905 | { |
| | 906 | symbol-fill-color: #ff69b4; |
| | 907 | text-halo-color: #ff69b4; |
| | 908 | } |
| | 909 | way["highway"]["name"][prop(crc)>=6060][prop(crc)<6363] |
| | 910 | { |
| 589 | | node["addr:street"=~/^[NОΞÑ]/]::halo, |
| 590 | | relation[type="associatedStreet"][name=~/^[NОΞÑ]/] > node["addr:housenumber"]::halo |
| 591 | | { |
| 592 | | symbol-fill-color: #ff69b4; |
| 593 | | text-halo-color: #ff69b4; |
| 594 | | } |
| 595 | | way["highway"]["name"=~/^[NОΞÑ]/] |
| 596 | | { |
| 597 | | color: #ff69b4; |
| 598 | | text-halo-color: #ff69b4; |
| 599 | | } |
| 600 | | |
| 601 | | area["addr:street"=~/^[OПΟ]/], |
| 602 | | relation[type="associatedStreet"][name=~/^[OПΟ]/] > area["addr:housenumber"] |
| 603 | | { |
| 604 | | fill-color: #cd5c5c; |
| | 914 | /* --------- */ |
| | 915 | area["addr:street"][prop(crc)>=6363][prop(crc)<6666], |
| | 916 | area["addr:place"][prop(crc)>=6363][prop(crc)<6666], |
| | 917 | relation[type="associatedStreet"][prop(crc)>=6363][prop(crc)<6666] > area["addr:housenumber"], |
| | 918 | area["highway"="pedestrian"]["name"][prop(crc)>=6363][prop(crc)<6666]:closed |
| | 919 | { |
| | 920 | color: #cd5c5c; |
| | 921 | fill-color: #cd5c5c; |
| | 922 | text-halo-color: #cd5c5c; |
| | 923 | } |
| | 924 | node["addr:street"][prop(crc)>=6363][prop(crc)<6666]::halo, |
| | 925 | node["addr:place"][prop(crc)>=6363][prop(crc)<6666]::halo, |
| | 926 | relation[type="associatedStreet"][prop(crc)>=6363][prop(crc)<6666] > node["addr:housenumber"]::halo |
| | 927 | { |
| | 928 | symbol-fill-color: #cd5c5c; |
| | 929 | text-halo-color: #cd5c5c; |
| | 930 | } |
| | 931 | way["highway"]["name"][prop(crc)>=6363][prop(crc)<6666] |
| | 932 | { |
| 608 | | node["addr:street"=~/^[OПΟ]/]::halo, |
| 609 | | relation[type="associatedStreet"][name=~/^[OПΟ]/] > node["addr:housenumber"]::halo |
| 610 | | { |
| 611 | | symbol-fill-color: #cd5c5c; |
| 612 | | text-halo-color: #cd5c5c; |
| 613 | | } |
| 614 | | way["highway"]["name"=~/^[OПΟ]/] |
| 615 | | { |
| 616 | | color: #cd5c5c; |
| 617 | | text-halo-color: #cd5c5c; |
| 618 | | } |
| 619 | | |
| 620 | | area["addr:street"=~/^[Ö3РΠØÓÔŒ]/], |
| 621 | | relation[type="associatedStreet"][name=~/^[Ö3РΠØÓÔŒ]/] > area["addr:housenumber"] |
| 622 | | { |
| 623 | | fill-color: #81621a; |
| | 936 | /* --------- */ |
| | 937 | area["addr:street"][prop(crc)>=6666][prop(crc)<6969], |
| | 938 | area["addr:place"][prop(crc)>=6666][prop(crc)<6969], |
| | 939 | relation[type="associatedStreet"][prop(crc)>=6666][prop(crc)<6969] > area["addr:housenumber"], |
| | 940 | area["highway"="pedestrian"]["name"][prop(crc)>=6666][prop(crc)<6969]:closed |
| | 941 | { |
| | 942 | color: #81621a; |
| | 943 | fill-color: #81621a; |
| | 944 | text-halo-color: #81621a; |
| | 945 | } |
| | 946 | node["addr:street"][prop(crc)>=6666][prop(crc)<6969]::halo, |
| | 947 | node["addr:place"][prop(crc)>=6666][prop(crc)<6969]::halo, |
| | 948 | relation[type="associatedStreet"][prop(crc)>=6666][prop(crc)<6969] > node["addr:housenumber"]::halo |
| | 949 | { |
| | 950 | symbol-fill-color: #81621a; |
| | 951 | text-halo-color: #81621a; |
| | 952 | } |
| | 953 | way["highway"]["name"][prop(crc)>=6666][prop(crc)<6969] |
| | 954 | { |
| 627 | | node["addr:street"=~/^[Ö3РΠØÓÔŒ]/]::halo, |
| 628 | | relation[type="associatedStreet"][name=~/^[Ö3РΠØÓÔŒ]/] > node["addr:housenumber"]::halo |
| 629 | | { |
| 630 | | symbol-fill-color: #81621a; |
| 631 | | text-halo-color: #81621a; |
| 632 | | } |
| 633 | | way["highway"]["name"=~/^[Ö3РΠØÓÔŒ]/] |
| 634 | | { |
| 635 | | color: #81621a; |
| 636 | | text-halo-color: #81621a; |
| 637 | | } |
| 638 | | |
| 639 | | area["addr:street"=~/^[PС]/], |
| 640 | | relation[type="associatedStreet"][name=~/^[PС]/] > area["addr:housenumber"] |
| 641 | | { |
| 642 | | fill-color: #824b00; |
| 643 | | color: #824b00; |
| 644 | | text-halo-color: #824b00; |
| 645 | | } |
| 646 | | node["addr:street"=~/^[PС]/]::halo, |
| 647 | | relation[type="associatedStreet"][name=~/^[PС]/] > node["addr:housenumber"]::halo |
| 648 | | { |
| 649 | | symbol-fill-color: #824b00; |
| 650 | | text-halo-color: #824b00; |
| 651 | | } |
| 652 | | way["highway"]["name"=~/^[PС]/] |
| 653 | | { |
| 654 | | color: #824b00; |
| 655 | | text-halo-color: #824b00; |
| 656 | | } |
| 657 | | |
| 658 | | area["addr:street"=~/^[Q4ТΡ]/], |
| 659 | | relation[type="associatedStreet"][name=~/^[Q4ТΡ]/] > area["addr:housenumber"] |
| 660 | | { |
| 661 | | fill-color: #f08080; |
| | 958 | /* --------- */ |
| | 959 | area["addr:street"][prop(crc)>=6969][prop(crc)<7272], |
| | 960 | area["addr:place"][prop(crc)>=6969][prop(crc)<7272], |
| | 961 | relation[type="associatedStreet"][prop(crc)>=6969][prop(crc)<7272] > area["addr:housenumber"], |
| | 962 | area["highway"="pedestrian"]["name"][prop(crc)>=6969][prop(crc)<7272]:closed |
| | 963 | { |
| | 964 | color: #824600; |
| | 965 | fill-color: #824600; |
| | 966 | text-halo-color: #824600; |
| | 967 | } |
| | 968 | node["addr:street"][prop(crc)>=6969][prop(crc)<7272]::halo, |
| | 969 | node["addr:place"][prop(crc)>=6969][prop(crc)<7272]::halo, |
| | 970 | relation[type="associatedStreet"][prop(crc)>=6969][prop(crc)<7272] > node["addr:housenumber"]::halo |
| | 971 | { |
| | 972 | symbol-fill-color: #824600; |
| | 973 | text-halo-color: #824600; |
| | 974 | } |
| | 975 | way["highway"]["name"][prop(crc)>=6969][prop(crc)<7272] |
| | 976 | { |
| | 977 | color: #824600; |
| | 978 | text-halo-color: #824600; |
| | 979 | } |
| | 980 | /* --------- */ |
| | 981 | area["addr:street"][prop(crc)>=7272][prop(crc)<7575], |
| | 982 | area["addr:place"][prop(crc)>=7272][prop(crc)<7575], |
| | 983 | relation[type="associatedStreet"][prop(crc)>=7272][prop(crc)<7575] > area["addr:housenumber"], |
| | 984 | area["highway"="pedestrian"]["name"][prop(crc)>=7272][prop(crc)<7575]:closed |
| | 985 | { |
| | 986 | color: #f08080; |
| | 987 | fill-color: #f08080; |
| | 988 | text-halo-color: #f08080; |
| | 989 | } |
| | 990 | node["addr:street"][prop(crc)>=7272][prop(crc)<7575]::halo, |
| | 991 | node["addr:place"][prop(crc)>=7272][prop(crc)<7575]::halo, |
| | 992 | relation[type="associatedStreet"][prop(crc)>=7272][prop(crc)<7575] > node["addr:housenumber"]::halo |
| | 993 | { |
| | 994 | symbol-fill-color: #f08080; |
| | 995 | text-halo-color: #f08080; |
| | 996 | } |
| | 997 | way["highway"]["name"][prop(crc)>=7272][prop(crc)<7575] |
| | 998 | { |
| 665 | | node["addr:street"=~/^[Q4ТΡ]/]::halo, |
| 666 | | relation[type="associatedStreet"][name=~/^[Q4ТΡ]/] > node["addr:housenumber"]::halo |
| 667 | | { |
| 668 | | symbol-fill-color: #f08080; |
| 669 | | text-halo-color: #f08080; |
| 670 | | } |
| 671 | | way["highway"]["name"=~/^[Q4ТΡ]/] |
| 672 | | { |
| 673 | | color: #f08080; |
| 674 | | text-halo-color: #f08080; |
| 675 | | } |
| 676 | | |
| 677 | | area["addr:street"=~/^[RУΣ]/], |
| 678 | | relation[type="associatedStreet"][name=~/^[RУΣ]/] > area["addr:housenumber"] |
| 679 | | { |
| 680 | | fill-color: #F75617; |
| | 1002 | /* --------- */ |
| | 1003 | area["addr:street"][prop(crc)>=7575][prop(crc)<7878], |
| | 1004 | area["addr:place"][prop(crc)>=7575][prop(crc)<7878], |
| | 1005 | relation[type="associatedStreet"][prop(crc)>=7575][prop(crc)<7878] > area["addr:housenumber"], |
| | 1006 | area["highway"="pedestrian"]["name"][prop(crc)>=7575][prop(crc)<7878]:closed |
| | 1007 | { |
| | 1008 | color: #F75617; |
| | 1009 | fill-color: #F75617; |
| | 1010 | text-halo-color: #F75617; |
| | 1011 | } |
| | 1012 | node["addr:street"][prop(crc)>=7575][prop(crc)<7878]::halo, |
| | 1013 | node["addr:place"][prop(crc)>=7575][prop(crc)<7878]::halo, |
| | 1014 | relation[type="associatedStreet"][prop(crc)>=7575][prop(crc)<7878] > node["addr:housenumber"]::halo |
| | 1015 | { |
| | 1016 | symbol-fill-color: #F75617; |
| | 1017 | text-halo-color: #F75617; |
| | 1018 | } |
| | 1019 | way["highway"]["name"][prop(crc)>=7575][prop(crc)<7878] |
| | 1020 | { |
| 684 | | node["addr:street"=~/^[RУΣ]/]::halo, |
| 685 | | relation[type="associatedStreet"][name=~/^[RУΣ]/] > node["addr:housenumber"]::halo |
| 686 | | { |
| 687 | | symbol-fill-color: #F75617; |
| 688 | | text-halo-color: #F75617; |
| 689 | | } |
| 690 | | way["highway"]["name"=~/^[RУΣ]/] |
| 691 | | { |
| 692 | | color: #F75617; |
| 693 | | text-halo-color: #F75617; |
| 694 | | } |
| 695 | | |
| 696 | | area["addr:street"=~/^[SХΤŞ]/], |
| 697 | | relation[type="associatedStreet"][name=~/^[SХΤŞ]/] > area["addr:housenumber"] |
| 698 | | { |
| 699 | | fill-color: #32cd32; |
| | 1024 | /* --------- */ |
| | 1025 | area["addr:street"][prop(crc)>=7878][prop(crc)<8181], |
| | 1026 | area["addr:place"][prop(crc)>=7878][prop(crc)<8181], |
| | 1027 | relation[type="associatedStreet"][prop(crc)>=7878][prop(crc)<8181] > area["addr:housenumber"], |
| | 1028 | area["highway"="pedestrian"]["name"][prop(crc)>=7878][prop(crc)<8181]:closed |
| | 1029 | { |
| | 1030 | color: #32cd32; |
| | 1031 | fill-color: #32cd32; |
| | 1032 | text-halo-color: #32cd32; |
| | 1033 | } |
| | 1034 | node["addr:street"][prop(crc)>=7878][prop(crc)<8181]::halo, |
| | 1035 | node["addr:place"][prop(crc)>=7878][prop(crc)<8181]::halo, |
| | 1036 | relation[type="associatedStreet"][prop(crc)>=7878][prop(crc)<8181] > node["addr:housenumber"]::halo |
| | 1037 | { |
| | 1038 | symbol-fill-color: #32cd32; |
| | 1039 | text-halo-color: #32cd32; |
| | 1040 | } |
| | 1041 | way["highway"]["name"][prop(crc)>=7878][prop(crc)<8181] |
| | 1042 | { |
| 703 | | node["addr:street"=~/^[SХΤŞ]/]::halo, |
| 704 | | relation[type="associatedStreet"][name=~/^[SХΤŞ]/] > node["addr:housenumber"]::halo |
| 705 | | { |
| 706 | | symbol-fill-color: #32cd32; |
| 707 | | text-halo-color: #32cd32; |
| 708 | | } |
| 709 | | way["highway"]["name"=~/^[SХΤŞ]/] |
| 710 | | { |
| 711 | | color: #32cd32; |
| 712 | | text-halo-color: #32cd32; |
| 713 | | } |
| 714 | | |
| 715 | | area["addr:street"=~/^[TЦΥ]/], |
| 716 | | relation[type="associatedStreet"][name=~/^[TЦΥ]/] > area["addr:housenumber"] |
| 717 | | { |
| 718 | | fill-color: #ba55d3; |
| | 1046 | /* --------- */ |
| | 1047 | area["addr:street"][prop(crc)>=8181][prop(crc)<8484], |
| | 1048 | area["addr:place"][prop(crc)>=8181][prop(crc)<8484], |
| | 1049 | relation[type="associatedStreet"][prop(crc)>=8181][prop(crc)<8484] > area["addr:housenumber"], |
| | 1050 | area["highway"="pedestrian"]["name"][prop(crc)>=8181][prop(crc)<8484]:closed |
| | 1051 | { |
| | 1052 | color: #ba55d3; |
| | 1053 | fill-color: #ba55d3; |
| | 1054 | text-halo-color: #ba55d3; |
| | 1055 | } |
| | 1056 | node["addr:street"][prop(crc)>=8181][prop(crc)<8484]::halo, |
| | 1057 | node["addr:place"][prop(crc)>=8181][prop(crc)<8484]::halo, |
| | 1058 | relation[type="associatedStreet"][prop(crc)>=8181][prop(crc)<8484] > node["addr:housenumber"]::halo |
| | 1059 | { |
| | 1060 | symbol-fill-color: #ba55d3; |
| | 1061 | text-halo-color: #ba55d3; |
| | 1062 | } |
| | 1063 | way["highway"]["name"][prop(crc)>=8181][prop(crc)<8484] |
| | 1064 | { |
| 722 | | node["addr:street"=~/^[TЦΥ]/]::halo, |
| 723 | | relation[type="associatedStreet"][name=~/^[TЦΥ]/] > node["addr:housenumber"]::halo |
| 724 | | { |
| 725 | | symbol-fill-color: #ba55d3; |
| 726 | | text-halo-color: #ba55d3; |
| 727 | | } |
| 728 | | way["highway"]["name"=~/^[TЦΥ]/] |
| 729 | | { |
| 730 | | color: #ba55d3; |
| 731 | | text-halo-color: #ba55d3; |
| 732 | | } |
| 733 | | |
| 734 | | area["addr:street"=~/^[UЧ]/], |
| 735 | | relation[type="associatedStreet"][name=~/^[UЧ]/] > area["addr:housenumber"] |
| 736 | | { |
| 737 | | fill-color: #9370db; |
| | 1068 | /* --------- */ |
| | 1069 | area["addr:street"][prop(crc)>=8484][prop(crc)<8787], |
| | 1070 | area["addr:place"][prop(crc)>=8484][prop(crc)<8787], |
| | 1071 | relation[type="associatedStreet"][prop(crc)>=8484][prop(crc)<8787] > area["addr:housenumber"], |
| | 1072 | area["highway"="pedestrian"]["name"][prop(crc)>=8484][prop(crc)<8787]:closed |
| | 1073 | { |
| | 1074 | color: #9370db; |
| | 1075 | fill-color: #9370db; |
| | 1076 | text-halo-color: #9370db; |
| | 1077 | } |
| | 1078 | node["addr:street"][prop(crc)>=8484][prop(crc)<8787]::halo, |
| | 1079 | node["addr:place"][prop(crc)>=8484][prop(crc)<8787]::halo, |
| | 1080 | relation[type="associatedStreet"][prop(crc)>=8484][prop(crc)<8787] > node["addr:housenumber"]::halo |
| | 1081 | { |
| | 1082 | symbol-fill-color: #9370db; |
| | 1083 | text-halo-color: #9370db; |
| | 1084 | } |
| | 1085 | way["highway"]["name"][prop(crc)>=8484][prop(crc)<8787] |
| | 1086 | { |
| 741 | | node["addr:street"=~/^[UЧ]/]::halo, |
| 742 | | relation[type="associatedStreet"][name=~/^[UЧ]/] > node["addr:housenumber"]::halo |
| 743 | | { |
| 744 | | symbol-fill-color: #9370db; |
| 745 | | text-halo-color: #9370db; |
| 746 | | } |
| 747 | | way["highway"]["name"=~/^[UЧ]/] |
| 748 | | { |
| 749 | | color: #9370db; |
| 750 | | text-halo-color: #9370db; |
| 751 | | } |
| 752 | | |
| 753 | | area["addr:street"=~/^[Ü5ШЩΦÚÙÛ]/], |
| 754 | | relation[type="associatedStreet"][name=~/^[Ü5ШЩΦÚÙÛ]/] > area["addr:housenumber"] |
| 755 | | { |
| 756 | | fill-color: #ff7c00; |
| | 1090 | /* --------- */ |
| | 1091 | area["addr:street"][prop(crc)>=8787][prop(crc)<9090], |
| | 1092 | area["addr:place"][prop(crc)>=8787][prop(crc)<9090], |
| | 1093 | relation[type="associatedStreet"][prop(crc)>=8787][prop(crc)<9090] > area["addr:housenumber"], |
| | 1094 | area["highway"="pedestrian"]["name"][prop(crc)>=8787][prop(crc)<9090]:closed |
| | 1095 | { |
| | 1096 | color: #ff7c00; |
| | 1097 | fill-color: #ff7c00; |
| | 1098 | text-halo-color: #ff7c00; |
| | 1099 | } |
| | 1100 | node["addr:street"][prop(crc)>=8787][prop(crc)<9090]::halo, |
| | 1101 | node["addr:place"][prop(crc)>=8787][prop(crc)<9090]::halo, |
| | 1102 | relation[type="associatedStreet"][prop(crc)>=8787][prop(crc)<9090] > node["addr:housenumber"]::halo |
| | 1103 | { |
| | 1104 | symbol-fill-color: #ff7c00; |
| | 1105 | text-halo-color: #ff7c00; |
| | 1106 | } |
| | 1107 | way["highway"]["name"][prop(crc)>=8787][prop(crc)<9090] |
| | 1108 | { |
| 760 | | node["addr:street"=~/^[Ü5ШЩΦÚÙÛ]/]::halo, |
| 761 | | relation[type="associatedStreet"][name=~/^[Ü5ШЩΦÚÙÛ]/] > node["addr:housenumber"]::halo |
| 762 | | { |
| 763 | | symbol-fill-color: #ff7c00; |
| 764 | | text-halo-color: #ff7c00; |
| 765 | | } |
| 766 | | way["highway"]["name"=~/^[Ü5ШЩΦÚÙÛ]/] |
| 767 | | { |
| 768 | | color: #ff7c00; |
| 769 | | text-halo-color: #ff7c00; |
| 770 | | } |
| 771 | | |
| 772 | | area["addr:street"=~/^[V6Ы]/], |
| 773 | | relation[type="associatedStreet"][name=~/^[V6Ы]/] > area["addr:housenumber"] |
| 774 | | { |
| 775 | | fill-color: #3cb371; |
| | 1112 | /* --------- */ |
| | 1113 | area["addr:street"][prop(crc)>=9090][prop(crc)<9393], |
| | 1114 | area["addr:place"][prop(crc)>=9090][prop(crc)<9393], |
| | 1115 | relation[type="associatedStreet"][prop(crc)>=9090][prop(crc)<9393] > area["addr:housenumber"], |
| | 1116 | area["highway"="pedestrian"]["name"][prop(crc)>=9090][prop(crc)<9393]:closed |
| | 1117 | { |
| | 1118 | color: #3cb371; |
| | 1119 | fill-color: #3cb371; |
| | 1120 | text-halo-color: #3cb371; |
| | 1121 | } |
| | 1122 | node["addr:street"][prop(crc)>=9090][prop(crc)<9393]::halo, |
| | 1123 | node["addr:place"][prop(crc)>=9090][prop(crc)<9393]::halo, |
| | 1124 | relation[type="associatedStreet"][prop(crc)>=9090][prop(crc)<9393] > node["addr:housenumber"]::halo |
| | 1125 | { |
| | 1126 | symbol-fill-color: #3cb371; |
| | 1127 | text-halo-color: #3cb371; |
| | 1128 | } |
| | 1129 | way["highway"]["name"][prop(crc)>=9090][prop(crc)<9393] |
| | 1130 | { |
| 779 | | node["addr:street"=~/^[V6Ы]/]::halo, |
| 780 | | relation[type="associatedStreet"][name=~/^[V6Ы]/] > node["addr:housenumber"]::halo |
| 781 | | { |
| 782 | | symbol-fill-color: #3cb371; |
| 783 | | text-halo-color: #3cb371; |
| 784 | | } |
| 785 | | way["highway"]["name"=~/^[V6Ы]/] |
| 786 | | { |
| 787 | | color: #3cb371; |
| 788 | | text-halo-color: #3cb371; |
| 789 | | } |
| 790 | | |
| 791 | | area["addr:street"=~/^[W7ЬΧ]/], |
| 792 | | relation[type="associatedStreet"][name=~/^[W7ЬΧ]/] > area["addr:housenumber"] |
| 793 | | { |
| 794 | | fill-color: #808000; |
| 795 | | color: #808000; |
| 796 | | text-halo-color: #808000; |
| 797 | | } |
| 798 | | node["addr:street"=~/^[W7ЬΧ]/]::halo, |
| 799 | | relation[type="associatedStreet"][name=~/^[W7ЬΧ]/] > node["addr:housenumber"]::halo |
| 800 | | { |
| 801 | | symbol-fill-color: #808000; |
| 802 | | text-halo-color: #808000; |
| 803 | | |
| 804 | | } |
| 805 | | way["highway"]["name"=~/^[W7ЬΧ]/] |
| 806 | | { |
| 807 | | color: #808000; |
| 808 | | text-halo-color: #808000; |
| 809 | | } |
| 810 | | |
| 811 | | area["addr:street"=~/^[X8ЭФΨ]/], |
| 812 | | relation[type="associatedStreet"][name=~/^[X8ЭФΨ]/] > area["addr:housenumber"] |
| 813 | | { |
| 814 | | fill-color: #7cfc00 ; |
| 815 | | color: #7cfc00 ; |
| 816 | | text-halo-color: #7cfc00; |
| 817 | | } |
| 818 | | node["addr:street"=~/^[X8ЭФΨ]/]::halo, |
| 819 | | relation[type="associatedStreet"][name=~/^[X8ЭФΨ]/] > node["addr:housenumber"]::halo |
| 820 | | { |
| 821 | | symbol-fill-color: #7cfc00; |
| 822 | | text-halo-color: #7cfc00; |
| 823 | | |
| 824 | | } |
| 825 | | way["highway"]["name"=~/^[X8ЭФΨ]/] |
| 826 | | { |
| 827 | | color: #7cfc00; |
| 828 | | text-halo-color: #7cfc00; |
| 829 | | } |
| 830 | | |
| 831 | | area["addr:street"=~/^[Y9ЮЪΩ]/], |
| 832 | | relation[type="associatedStreet"][name=~/^[Y9ЮЪΩ]/] > area["addr:housenumber"] |
| 833 | | { |
| 834 | | fill-color: #6b8e23; |
| 835 | | color: #6b8e23; |
| 836 | | text-halo-color: #6b8e23; |
| 837 | | } |
| 838 | | node["addr:street"=~/^[Y9ЮЪΩ]/]::halo, |
| 839 | | relation[type="associatedStreet"][name=~/^[Y9ЮЪΩ]/] > node["addr:housenumber"]::halo |
| 840 | | { |
| 841 | | symbol-fill-color: #6b8e23; |
| 842 | | text-halo-color: #6b8e23; |
| 843 | | } |
| 844 | | way["highway"]["name"=~/^[Y9ЮЪΩ]/] |
| 845 | | { |
| 846 | | color: #6b8e23; |
| 847 | | text-halo-color: #6b8e23; |
| 848 | | } |
| 849 | | |
| 850 | | area["addr:street"=~/^[Z0ЯŽ]/], |
| 851 | | relation[type="associatedStreet"][name=~/^[Z0ЯŽ]/] > area["addr:housenumber"] |
| 852 | | { |
| 853 | | fill-color: #ff4444; |
| | 1134 | /* --------- */ |
| | 1135 | area["addr:street"][prop(crc)>=9393][prop(crc)<9696], |
| | 1136 | area["addr:place"][prop(crc)>=9393][prop(crc)<9696], |
| | 1137 | relation[type="associatedStreet"][prop(crc)>=9393][prop(crc)<9696] > area["addr:housenumber"], |
| | 1138 | area["highway"="pedestrian"]["name"][prop(crc)>=9393][prop(crc)<9696]:closed |
| | 1139 | { |
| | 1140 | color: #707000; |
| | 1141 | fill-color: #707000; |
| | 1142 | text-halo-color: #707000; |
| | 1143 | } |
| | 1144 | node["addr:street"][prop(crc)>=9393][prop(crc)<9696]::halo, |
| | 1145 | node["addr:place"][prop(crc)>=9393][prop(crc)<9696]::halo, |
| | 1146 | relation[type="associatedStreet"][prop(crc)>=9393][prop(crc)<9696] > node["addr:housenumber"]::halo |
| | 1147 | { |
| | 1148 | symbol-fill-color: #707000; |
| | 1149 | text-halo-color: #707000; |
| | 1150 | |
| | 1151 | } |
| | 1152 | way["highway"]["name"][prop(crc)>=9393][prop(crc)<9696] |
| | 1153 | { |
| | 1154 | color: #707000; |
| | 1155 | text-halo-color: #707000; |
| | 1156 | } |
| | 1157 | /* --------- */ |
| | 1158 | area["addr:street"][prop(crc)>=9696], |
| | 1159 | area["addr:place"][prop(crc)>=9696], |
| | 1160 | relation[type="associatedStreet"][prop(crc)>=9696] > area["addr:housenumber"], |
| | 1161 | area["highway"="pedestrian"]["name"][prop(crc)>=9696]:closed |
| | 1162 | { |
| | 1163 | color: #ff4444; |
| | 1164 | fill-color: #ff4444; |
| | 1165 | text-halo-color: #ff4444; |
| | 1166 | } |
| | 1167 | node["addr:street"][prop(crc)>=9696]::halo, |
| | 1168 | node["addr:place"][prop(crc)>=9696]::halo, |
| | 1169 | relation[type="associatedStreet"][prop(crc)>=9696] > node["addr:housenumber"]::halo |
| | 1170 | { |
| | 1171 | symbol-fill-color: #ff4444; |
| | 1172 | text-halo-color: #ff4444; |
| | 1173 | } |
| | 1174 | way["highway"]["name"][prop(crc)>=9696] |
| | 1175 | { |