| | 1 | = MapWithAI = |
| | 2 | |
| | 3 | This style highlights probable MapWithAI objects. The color is adjustable via the [wiki:Help/Preferences/Display#Colors Color Preferences]. |
| | 4 | |
| | 5 | {{{ |
| | 6 | #!style type="mapcss" |
| | 7 | meta |
| | 8 | { |
| | 9 | title: "MapWithAI"; |
| | 10 | description: "Visualization of MapWithAI data"; |
| | 11 | author: "Taylor Smock"; |
| | 12 | version="1.[[revision]]_[[date]]" |
| | 13 | min-josm-version: "15229"; |
| | 14 | } |
| | 15 | |
| | 16 | /******************************************* |
| | 17 | * Set .mapwithai for all known MapWithAI datasets * |
| | 18 | *******************************************/ |
| | 19 | way[source=~/^(?i)(microsoft|digitalglobe)$/] { |
| | 20 | set .mapwithai; |
| | 21 | } |
| | 22 | |
| | 23 | way.mapwithai { |
| | 24 | color: fuchsia; |
| | 25 | } |
| | 26 | way.mapwithai:closed2 { |
| | 27 | fill-color: fuchsia; |
| | 28 | } |
| | 29 | }}} |