summaryrefslogtreecommitdiff
path: root/test/fixtures/style_parser/expressions.style.json
blob: b9b4aeac7f2c94b6f8370291feb9cac77fb0d636 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
  "version": 8,
  "sources": {
    "source": {
      "type": "vector",
      "url": "mapbox://mapbox.mapbox-streets-v5"
    }
  },
  "layers": [
    {
      "id": "valid expression",
      "type": "fill",
      "source": "source",
      "source-layer": "layer",
      "paint": {
        "fill-color": ["rgba", 10, ["number", ["get", "x"]], 30, 1]
      }
    },
    {
      "id": "invalid expression type - color",
      "type": "fill",
      "source": "source",
      "source-layer": "layer",
      "paint": {
        "fill-color": ["pi"]
      }
    },
    {
      "id": "invalid expression - fails type checking",
      "type": "fill",
      "source": "source",
      "source-layer": "layer",
      "paint": {
        "fill-color": ["rgba", 1, "should be a number", 0, 1]
      }
    },
    {
      "id": "invalid expression - nested zoom expression",
      "type": "fill",
      "source": "source",
      "source-layer": "layer",
      "paint": {
        "fill-opacity": ["+", 0.5, ["interpolate", ["linear"], ["zoom"], 0, 0, 1, 1]]
      }
    },
    {
      "id": "invalid expression - not allowed in visibility",
      "type": "fill",
      "source": "source",
      "source-layer": "layer",
      "layout": {
        "visibility": ["literal", true]
      }
    },
    {
      "id": "invalid expression - not a DDS property",
      "type": "fill-extrusion",
      "source": "source",
      "source-layer": "layer",
      "paint": {
        "fill-extrusion-opacity": ["get", "opacity"]
      }
    },
    {
      "id": "invalid expression - line-dasharray must use step interpolation",
      "type": "line",
      "source": "source",
      "source-layer": "layer",
      "paint": {
        "line-dasharray": ["interpolate", ["linear"], ["zoom"], 0, ["literal", [1, 2]], 1, ["literal", [3, 4]]]
      }
    }
  ]
}