Changes between Initial Version and Version 1 of Styles/MapWithAI


Ignore:
Timestamp:
2019-10-30T18:34:49+01:00 (5 years ago)
Author:
taylor.smock
Comment:

Add paintstyle to point out MapWithAI data

Legend:

Unmodified
Added
Removed
Modified
  • Styles/MapWithAI

    v1 v1  
     1= MapWithAI =
     2
     3This style highlights probable MapWithAI objects. The color is adjustable via the [wiki:Help/Preferences/Display#Colors Color Preferences].
     4
     5{{{
     6#!style type="mapcss"
     7meta
     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 *******************************************/
     19way[source=~/^(?i)(microsoft|digitalglobe)$/] {
     20    set .mapwithai;
     21}
     22
     23way.mapwithai {
     24    color: fuchsia;
     25}
     26way.mapwithai:closed2 {
     27    fill-color: fuchsia;
     28}
     29}}}