aboutsummaryrefslogtreecommitdiffstats
path: root/docs.json
blob: 96cb5f965d706c8bc3113d9cf817c19d85365dda (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
[
  {
    "name": "Mapbox.Element",
    "comment": " This library wraps a Custom Element that actually renders a map.\n\n@docs map, css, MapboxAttr\n\n\n### Attributes\n\n@docs token, id, maxZoom, minZoom, maxBounds, renderWorldCopies\n\n\n### Events\n\n@docs EventData, TouchEvent, eventFeaturesFilter, eventFeaturesLayers\n\n@docs onMouseDown, onMouseUp, onMouseOver, onMouseMove, onClick, onDblClick, onMouseOut, onContextMenu, onZoom, onZoomStart, onZoomEnd, onRotate, onRotateStart, onRotateEnd, onTouchEnd, onTouchMove, onTouchCancel\n\n",
    "aliases": [
      {
        "name": "EventData",
        "comment": " `point` is the coordinates in pixels in screen space.\n\n`lngLat` is the coordinates as a longitude, latitude in geographic space.\n\n`renderedFeatures` is a geojson that intersect the `lngLat`:\n\nThe properties value of each returned feature object contains the properties of its source feature. For GeoJSON sources, only string and numeric property values are supported (i.e. null, Array, and Object values are not supported).\n\nEach feature includes a top-level layer property whose value is an object representing the style layer to which the feature belongs. Layout and paint properties in this object contain values which are fully evaluated for the given zoom level and feature.\n\nFeatures from layers whose visibility property is \"none\", or from layers whose zoom range excludes the current zoom level are not included. Symbol features that have been hidden due to text or icon collision are not included. Features from all other layers are included, including features that may have no visible contribution to the rendered result; for example, because the layer's opacity or color alpha component is set to 0.\n\nThe topmost rendered feature appears first in the returned array, and subsequent features are sorted by descending z-order. Features that are rendered multiple times (due to wrapping across the antimeridian at low zoom levels) are returned only once (though subject to the following caveat).\n\nBecause features come from tiled vector data or GeoJSON data that is converted to tiles internally, feature geometries may be split or duplicated across tile boundaries and, as a result, features may appear multiple times in query results. For example, suppose there is a highway running through the bounding rectangle of a query. The results of the query will be those parts of the highway that lie within the map tiles covering the bounding rectangle, even if the highway extends into other tiles, and the portion of the highway within each map tile will be returned as a separate feature. Similarly, a point feature near a tile boundary may appear in multiple tiles due to tile buffering.\n\n",
        "args": [],
        "type": "{ point : ( Int, Int ) , lngLat : LngLat.LngLat , renderedFeatures : List Json.Decode.Value }"
      },
      {
        "name": "TouchEvent",
        "comment": " `touches` will list stuff for every finger involved in a gesture.\n\n`center` refers to the point in the geometric center of `touches`.\n\n",
        "args": [],
        "type": "{ touches : List Mapbox.Element.EventData , center : Mapbox.Element.EventData }"
      }
    ],
    "types": [
      {
        "name": "MapboxAttr",
        "comment": " This is the type that all attributes have.\n",
        "args": [
          "msg"
        ],
        "cases": []
      }
    ],
    "values": [
      {
        "name": "css",
        "comment": " This is literally:\n\n    <link\n      href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.46.0/mapbox-gl.css'\n      rel='stylesheet' />\n\nYou can include the required styles yourself if it fits better with the way you deploy your assets, this is meant as a quick way to get started.\n\n",
        "type": "Html.Html msg"
      },
      {
        "name": "eventFeaturesFilter",
        "comment": " By default the `renderedFeatures` property in events will return\na lot of data. If you don't need it, you can provide a filter to filter that data. This will make things more performant.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.DataExpression Bool -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "eventFeaturesLayers",
        "comment": " By default the `renderedFeatures` property in events will return\na lot of data. Here you can specify which layers you want to search for intersections. If you don't care about intersecting data at all, you can optimize performance by passing an empty list to this attribute.\n",
        "type": "List String -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "id",
        "comment": " The element's Id. This should be unique. You will need this if you want to use the Mapbox.Cmd module.\n",
        "type": "String -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "map",
        "comment": " A Map html element renders a map based on a Style.\n",
        "type": "List (Mapbox.Element.MapboxAttr msg) -> Mapbox.Style.Style -> Html.Html msg"
      },
      {
        "name": "maxBounds",
        "comment": " If set, the map will be constrained to the given bounds. The bounds are the `(south-west corner, north-east corner)`.\n",
        "type": "( LngLat.LngLat, LngLat.LngLat ) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "maxZoom",
        "comment": " The maximum zoom level of the map (0-24). Default 22.\n",
        "type": "Float -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "minZoom",
        "comment": " The minimum zoom level of the map (0-24).\n",
        "type": "Float -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onClick",
        "comment": " Fired when a pointing device (usually a mouse) is pressed and released at the same point on the map.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onContextMenu",
        "comment": " Fired when the right button of the mouse is clicked or the context menu key is pressed within the map.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onDblClick",
        "comment": " Fired when a pointing device (usually a mouse) is clicked twice at the same point on the map.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onMouseDown",
        "comment": " Fired when a pointing device (usually a mouse) is pressed within the map.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onMouseMove",
        "comment": " Fired when a pointing device (usually a mouse) is moved within the map.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onMouseOut",
        "comment": " Fired when a point device (usually a mouse) leaves the map's canvas.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onMouseOver",
        "comment": " Fired when a pointing device (usually a mouse) is moved within the map.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onMouseUp",
        "comment": " Fired when a pointing device (usually a mouse) is released within the map.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onRotate",
        "comment": " Fired repeatedly during a \"drag to rotate\" interaction.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onRotateEnd",
        "comment": " Fired when a \"drag to rotate\" interaction ends.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onRotateStart",
        "comment": " Fired when a \"drag to rotate\" interaction starts.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onTouchCancel",
        "comment": " Fired when a touchcancel event occurs within the map.\n",
        "type": "(Mapbox.Element.TouchEvent -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onTouchEnd",
        "comment": " Fired when a touchend event occurs within the map.\n",
        "type": "(Mapbox.Element.TouchEvent -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onTouchMove",
        "comment": " Fired when a touchmove event occurs within the map.\n",
        "type": "(Mapbox.Element.TouchEvent -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onZoom",
        "comment": " Fired repeatedly during an animated transition from one zoom level to another.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onZoomEnd",
        "comment": " Fired just after the map completes a transition from one zoom level to another.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "onZoomStart",
        "comment": " Fired just before the map begins a transition from one zoom level to another.\n",
        "type": "(Mapbox.Element.EventData -> msg) -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "renderWorldCopies",
        "comment": " If true, multiple copies of the world will be rendered, when zoomed out.\n",
        "type": "Bool -> Mapbox.Element.MapboxAttr msg"
      },
      {
        "name": "token",
        "comment": " Your [Mapbox API Token](https://www.mapbox.com/help/create-api-access-token/).\n",
        "type": "String -> Mapbox.Element.MapboxAttr msg"
      }
    ],
    "generated-with-elm-version": "0.18.0"
  },
  {
    "name": "Mapbox.Style",
    "comment": " A Mapbox style is a document that defines the visual appearance of a map: what data to draw, the order to draw it in, and how to style the data when drawing it. A style document is a JSON object with specific root level and nested properties. This specification defines and describes these properties.\n\n@docs Style, encode , StyleDef\n\n\n### Light\n\n@docs Light, defaultLight\n\n\n### Transition\n\n@docs Transition, defaultTransition\n\n\n### Misc Attributes\n\n@docs MiscAttr, sprite, glyphs, name, defaultCenter, defaultZoomLevel, defaultBearing, defaultPitch, metadata\n\n\n### Predefined styles\n\nYou can also use one of these predefined styles.\n\n@docs streets, outdoors, light, dark, satellite, satelliteStreets\n\n",
    "aliases": [
      {
        "name": "Light",
        "comment": " The global light source.\n\n\n### `anchor`\n\nWhether extruded geometries are lit relative to the map or viewport.\n\n\n### `position`\n\nPosition of the light source relative to lit (extruded) geometries, in `[r radial coordinate, a azimuthal angle, p polar angle]` where `r` indicates the distance from the center of the base of an object to its light, `a` indicates the position of the light relative to 0° (0° when the `anchor` is set to `viewport` corresponds to the top of the viewport, or 0° when `anchor` is set to `map` corresponds to due north, and degrees proceed clockwise), and `p` indicates the height of the light (from 0°, directly above, to 180°, directly below).\n\n\n### `color`\n\nColor tint for lighting extruded geometries.\n\n\n### `intensity`\n\nIntensity of lighting (on a scale from 0 to 1). Higher numbers will present as more extreme contrast.\n\n",
        "args": [],
        "type": "{ anchor : Mapbox.Expression.Anchor , position : Mapbox.Expression.Expression Mapbox.Expression.CameraExpression (Array.Array Float) , color : Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Color , intensity : Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float }"
      },
      {
        "name": "StyleDef",
        "comment": " This is the core representation of a Mapbox style. It has the following keys:\n\n\n### Layers\n\nThese define what is actually rendered on screen. See the Mapbox.Layer module on how to configure these.\n\n\n### Sources\n\nThese define the data sources that feed the Layers. See the Mapbox.Source module for more.\n\n\n### Misc\n\nThese are all optional attributes.\n\nAll the other keys are values defined below.\n\n",
        "args": [],
        "type": "{ transition : Mapbox.Style.Transition , light : Mapbox.Style.Light , layers : List Mapbox.Layer.Layer , sources : List Mapbox.Source.Source , misc : List Mapbox.Style.MiscAttr }"
      },
      {
        "name": "Transition",
        "comment": " A transition property controls timing for the interpolation between a transitionable style property's previous value and new value.\n\n\n### `duration`\n\nTime (in ms) allotted for transitions to complete.\n\n\n### `delay`\n\nLength of time (in ms) before a transition begins.\n\n",
        "args": [],
        "type": "{ duration : Int, delay : Int }"
      }
    ],
    "types": [
      {
        "name": "MiscAttr",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "Style",
        "comment": " A mapbox style.\n\nYou can either create a style spec in Elm (for which the rest of this library is useful :) or load one from a remote URL.\n\nTo load a style from the Mapbox API, you can use a URL of the form `FromUrl \"mapbox://styles/:owner/:style\"`, where `:owner` is your Mapbox account name and `:style` is the style ID.\n\n",
        "args": [],
        "cases": [
          [
            "Style",
            [
              "Mapbox.Style.StyleDef"
            ]
          ],
          [
            "FromUrl",
            [
              "String"
            ]
          ]
        ]
      }
    ],
    "values": [
      {
        "name": "dark",
        "comment": " ",
        "type": "Mapbox.Style.Style"
      },
      {
        "name": "defaultBearing",
        "comment": " Default bearing, in degrees. The bearing is the compass direction that is \"up\"; for example, a bearing of 90° orients the map so that east is up. This value will be used only if the map has not been positioned by other means (e.g. map options or user interaction).\n",
        "type": "Float -> Mapbox.Style.MiscAttr"
      },
      {
        "name": "defaultCenter",
        "comment": " Default map center in longitude and latitude. The style center will be used only if the map has not been positioned by other means (e.g. map options or user interaction).\n",
        "type": "LngLat.LngLat -> Mapbox.Style.MiscAttr"
      },
      {
        "name": "defaultLight",
        "comment": " A decent default light.\n",
        "type": "Mapbox.Style.Light"
      },
      {
        "name": "defaultPitch",
        "comment": " Default pitch, in degrees. Zero is perpendicular to the surface, for a look straight down at the map, while a greater value like 60 looks ahead towards the horizon. The style pitch will be used only if the map has not been positioned by other means (e.g. map options or user interaction).\n",
        "type": "Float -> Mapbox.Style.MiscAttr"
      },
      {
        "name": "defaultTransition",
        "comment": " The defaults for a transition\n",
        "type": "Mapbox.Style.Transition"
      },
      {
        "name": "defaultZoomLevel",
        "comment": " Default zoom level. The style zoom will be used only if the map has not been positioned by other means (e.g. map options or user interaction).\n",
        "type": "Float -> Mapbox.Style.MiscAttr"
      },
      {
        "name": "encode",
        "comment": " Encodes the style into JSON.\n",
        "type": "Mapbox.Style.Style -> Json.Encode.Value"
      },
      {
        "name": "glyphs",
        "comment": " A URL template for loading signed-distance-field glyph sets in PBF format. The URL must include `{fontstack}` and `{range}` tokens. This property is required if any layer uses the `textField` layout property.\n",
        "type": "String -> Mapbox.Style.MiscAttr"
      },
      {
        "name": "light",
        "comment": " ",
        "type": "Mapbox.Style.Style"
      },
      {
        "name": "metadata",
        "comment": " Arbitrary properties useful to track with the stylesheet, but do not influence rendering. Properties should be prefixed to avoid collisions, like 'mapbox:'.\n",
        "type": "List ( String, Json.Encode.Value ) -> Mapbox.Style.MiscAttr"
      },
      {
        "name": "name",
        "comment": " A human-readable name for the style.\n",
        "type": "String -> Mapbox.Style.MiscAttr"
      },
      {
        "name": "outdoors",
        "comment": " ",
        "type": "Mapbox.Style.Style"
      },
      {
        "name": "satellite",
        "comment": " ",
        "type": "Mapbox.Style.Style"
      },
      {
        "name": "satelliteStreets",
        "comment": " ",
        "type": "Mapbox.Style.Style"
      },
      {
        "name": "sprite",
        "comment": " A base URL for retrieving the sprite image and metadata. The extensions .png, .json and scale factor @2x.png will be automatically appended. This property is required if any layer uses the `backgroundPattern`, `fillPattern`, `linePattern`, `fillExtrusionPattern`, or `iconImage` properties.\n",
        "type": "String -> Mapbox.Style.MiscAttr"
      },
      {
        "name": "streets",
        "comment": " ",
        "type": "Mapbox.Style.Style"
      }
    ],
    "generated-with-elm-version": "0.18.0"
  },
  {
    "name": "Mapbox.Cmd.Template",
    "comment": " This module has a bunch of essentially imperative commands for your map.\n\nHowever, since a published library can't have ports in it, you will need to do some setup. The easiest way to do this is to copy [this file into your app](https://github.com/gampleman/elm-mapbox/blob/master/examples/MapCommands.elm). You can see the module docs for that [here](https://github.com/gampleman/elm-mapbox/blob/master/docs/MapCommands.md).\n\n@docs Id, Outgoing, Option, Supported\n\nYou can of course customize the module you copy into your codebase to support things like having multiple maps on the page at once, etc.\n\n\n### Moving the map around\n\n@docs panBy, panTo, zoomTo, zoomIn, zoomOut, rotateTo, jumpTo, easeTo, flyTo, stop\n\n\n### Fiting bounds\n\n@docs fitBounds\n\n\n### Other\n\n@docs setRTLTextPlugin, resize\n\n\n### Querying the map\n\n@docs queryResults, getBounds, queryRenderedFeatures\n\n",
    "aliases": [
      {
        "name": "Id",
        "comment": " Every command takes the DOM id of the map that it should operate on.\n",
        "args": [],
        "type": "String"
      },
      {
        "name": "Option",
        "comment": " This is exported here to simply for convenience. See `Cmd.Option` for more docs.\n",
        "args": [
          "support"
        ],
        "type": "Mapbox.Cmd.Internal.Option support"
      },
      {
        "name": "Outgoing",
        "comment": " The type of a port that you need to provide for this module to work.\n",
        "args": [
          "msg"
        ],
        "type": "Json.Encode.Value -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "Supported",
        "comment": " ",
        "args": [],
        "type": "Mapbox.Cmd.Internal.Supported"
      }
    ],
    "types": [],
    "values": [
      {
        "name": "easeTo",
        "comment": " Changes any combination of center, zoom, bearing, and pitch, with an animated transition between old and new values. The map will retain its current values for any details not specified in options.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> List (Mapbox.Cmd.Template.Option { center : Mapbox.Cmd.Template.Supported , zoom : Mapbox.Cmd.Template.Supported , bearing : Mapbox.Cmd.Template.Supported , pitch : Mapbox.Cmd.Template.Supported , around : Mapbox.Cmd.Template.Supported , duration : Mapbox.Cmd.Template.Supported , easing : Mapbox.Cmd.Template.Supported , offset : Mapbox.Cmd.Template.Supported , animate : Mapbox.Cmd.Template.Supported }) -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "fitBounds",
        "comment": " Pans and zooms the map to contain its visible area within the specified geographical bounds. This function will also reset the map's bearing to 0 if bearing is nonzero.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> List (Mapbox.Cmd.Template.Option { padding : Mapbox.Cmd.Template.Supported , easing : Mapbox.Cmd.Template.Supported , linear : Mapbox.Cmd.Template.Supported , offset : Mapbox.Cmd.Template.Supported , maxZoom : Mapbox.Cmd.Template.Supported }) -> ( LngLat.LngLat, LngLat.LngLat ) -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "flyTo",
        "comment": " Changes any combination of center, zoom, bearing, and pitch, animating the transition along a curve that evokes flight. The animation seamlessly incorporates zooming and panning to help the user maintain her bearings even after traversing a great distance.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> List (Mapbox.Cmd.Template.Option { center : Mapbox.Cmd.Template.Supported , zoom : Mapbox.Cmd.Template.Supported , bearing : Mapbox.Cmd.Template.Supported , pitch : Mapbox.Cmd.Template.Supported , around : Mapbox.Cmd.Template.Supported , duration : Mapbox.Cmd.Template.Supported , easing : Mapbox.Cmd.Template.Supported , offset : Mapbox.Cmd.Template.Supported , animate : Mapbox.Cmd.Template.Supported , curve : Mapbox.Cmd.Template.Supported , minZoom : Mapbox.Cmd.Template.Supported , speed : Mapbox.Cmd.Template.Supported , screenSpeed : Mapbox.Cmd.Template.Supported , maxDuration : Mapbox.Cmd.Template.Supported }) -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "getBounds",
        "comment": " Responds with the map's geographical bounds. Takes a numerical ID that allows you to associate the question with the answer.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> Int -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "jumpTo",
        "comment": " Changes any combination of center, zoom, bearing, and pitch, without an animated transition. The map will retain its current values for any details not specified in options.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> List (Mapbox.Cmd.Template.Option { center : Mapbox.Cmd.Template.Supported , zoom : Mapbox.Cmd.Template.Supported , bearing : Mapbox.Cmd.Template.Supported , pitch : Mapbox.Cmd.Template.Supported , around : Mapbox.Cmd.Template.Supported }) -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "panBy",
        "comment": " Pans the map by the specified offest.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> List (Mapbox.Cmd.Template.Option { duration : Mapbox.Cmd.Template.Supported , easing : Mapbox.Cmd.Template.Supported , offset : Mapbox.Cmd.Template.Supported , animate : Mapbox.Cmd.Template.Supported }) -> ( Int, Int ) -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "panTo",
        "comment": " Pans the map to the specified location, with an animated transition.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> List (Mapbox.Cmd.Template.Option { duration : Mapbox.Cmd.Template.Supported , easing : Mapbox.Cmd.Template.Supported , offset : Mapbox.Cmd.Template.Supported , animate : Mapbox.Cmd.Template.Supported }) -> LngLat.LngLat -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "queryRenderedFeatures",
        "comment": " Returns an array of GeoJSON Feature objects representing visible features that satisfy the query parameters. Takes a numerical ID that allows you to associate the question with the answer.\n\nThe response: The properties value of each returned feature object contains the properties of its source feature. For GeoJSON sources, only string and numeric property values are supported (i.e. null, Array, and Object values are not supported).\n\nEach feature includes a top-level layer property whose value is an object representing the style layer to which the feature belongs. Layout and paint properties in this object contain values which are fully evaluated for the given zoom level and feature.\n\nFeatures from layers whose visibility property is \"none\", or from layers whose zoom range excludes the current zoom level are not included. Symbol features that have been hidden due to text or icon collision are not included. Features from all other layers are included, including features that may have no visible contribution to the rendered result; for example, because the layer's opacity or color alpha component is set to 0.\n\nThe topmost rendered feature appears first in the returned array, and subsequent features are sorted by descending z-order. Features that are rendered multiple times (due to wrapping across the antimeridian at low zoom levels) are returned only once (though subject to the following caveat).\n\nBecause features come from tiled vector data or GeoJSON data that is converted to tiles internally, feature geometries may be split or duplicated across tile boundaries and, as a result, features may appear multiple times in query results. For example, suppose there is a highway running through the bounding rectangle of a query. The results of the query will be those parts of the highway that lie within the map tiles covering the bounding rectangle, even if the highway extends into other tiles, and the portion of the highway within each map tile will be returned as a separate feature. Similarly, a point feature near a tile boundary may appear in multiple tiles due to tile buffering.\n\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> Int -> List (Mapbox.Cmd.Template.Option { layers : Mapbox.Cmd.Template.Supported , filter : Mapbox.Cmd.Template.Supported , query : Mapbox.Cmd.Template.Supported }) -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "queryResults",
        "comment": " Wraps an incoming port so that you can get nicer subscritions:\n\n    port elmMapboxIncoming : (Value -> msg) -> Sub msg\n\n",
        "type": "((Json.Encode.Value -> msg) -> Platform.Sub.Sub msg) -> (Int -> ( LngLat.LngLat, LngLat.LngLat ) -> response) -> (Int -> List Json.Encode.Value -> response) -> (String -> response) -> (response -> msg) -> Platform.Sub.Sub msg"
      },
      {
        "name": "resize",
        "comment": " Resizes the map according to the dimensions of its container element.\n\nThis command must be sent after the map's container is resized, or when the map is shown after being initially hidden with CSS.\n\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "rotateTo",
        "comment": " Rotates the map to the specified bearing, with an animated transition. The bearing is the compass direction that is \"up\"; for example, a bearing of 90° orients the map so that east is up.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> List (Mapbox.Cmd.Template.Option { duration : Mapbox.Cmd.Template.Supported , easing : Mapbox.Cmd.Template.Supported , offset : Mapbox.Cmd.Template.Supported , animate : Mapbox.Cmd.Template.Supported }) -> Float -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "setRTLTextPlugin",
        "comment": " Sets the map's [RTL text plugin](https://www.mapbox.com/mapbox-gl-js/plugins/#mapbox-gl-rtl-text). Necessary for supporting languages like Arabic and Hebrew that are written right-to-left. Takes a URL pointing to the Mapbox RTL text plugin source.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> String -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "stop",
        "comment": " Stops any animated transition underway.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "zoomIn",
        "comment": " Increases the map's zoom level by 1.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> List (Mapbox.Cmd.Template.Option { duration : Mapbox.Cmd.Template.Supported , easing : Mapbox.Cmd.Template.Supported , offset : Mapbox.Cmd.Template.Supported , animate : Mapbox.Cmd.Template.Supported }) -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "zoomOut",
        "comment": " Decreases the map's zoom level by 1.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> List (Mapbox.Cmd.Template.Option { duration : Mapbox.Cmd.Template.Supported , easing : Mapbox.Cmd.Template.Supported , offset : Mapbox.Cmd.Template.Supported , animate : Mapbox.Cmd.Template.Supported }) -> Platform.Cmd.Cmd msg"
      },
      {
        "name": "zoomTo",
        "comment": " Zooms the map to the specified zoom level, with an animated transition.\n",
        "type": "Mapbox.Cmd.Template.Outgoing msg -> Mapbox.Cmd.Template.Id -> List (Mapbox.Cmd.Template.Option { duration : Mapbox.Cmd.Template.Supported , easing : Mapbox.Cmd.Template.Supported , offset : Mapbox.Cmd.Template.Supported , animate : Mapbox.Cmd.Template.Supported }) -> Float -> Platform.Cmd.Cmd msg"
      }
    ],
    "generated-with-elm-version": "0.18.0"
  },
  {
    "name": "Mapbox.Cmd.Option",
    "comment": "\n\n\n### Animation options\n\nOptions common to map movement commands that involve animation, such as panBy and easeTo, controlling the duration and easing function of the animation. All properties are optional.\n\n@docs duration, easing, offset, animate\n\n@docs curve, minZoom, speed, screenSpeed, maxDuration\n\n\n### Camera Options\n\nOptions common to `jumpTo`, `easeTo`, and `flyTo`, controlling the desired location, zoom, bearing, and pitch of the camera. All properties are optional, and when a property is omitted, the current camera value for that property will remain unchanged.\n\n@docs center, zoom, bearing, pitch, around\n\n\n### Fiting bounds\n\n@docs padding, Padding, linear, maxZoom\n\n\n### Querying rendered features\n\n@docs layers, filter, intersectsPoint, intersectsBox\n\n",
    "aliases": [
      {
        "name": "Padding",
        "comment": " ",
        "args": [],
        "type": "{ top : Int, right : Int, bottom : Int, left : Int }"
      }
    ],
    "types": [],
    "values": [
      {
        "name": "animate",
        "comment": " If false, no animation will occur.\n",
        "type": "Bool -> Mapbox.Cmd.Internal.Option { a | animate : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "around",
        "comment": " If `zoom` is specified, `around` determines the point around which the zoom is centered.\n",
        "type": "LngLat.LngLat -> Mapbox.Cmd.Internal.Option { a | around : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "bearing",
        "comment": " The desired bearing, in degrees. The bearing is the compass direction that is \"up\"; for example, a bearing of 90° orients the map so that east is up.\n",
        "type": "Float -> Mapbox.Cmd.Internal.Option { a | bearing : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "center",
        "comment": " The desired center.\n",
        "type": "LngLat.LngLat -> Mapbox.Cmd.Internal.Option { a | center : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "curve",
        "comment": " The zooming \"curve\" that will occur along the flight path.\nA high value maximizes zooming for an exaggerated animation, while a\nlow value minimizes zooming for an effect closer to `easeTo`.\n1.42 is the average value selected by participants in the user study discussed in [van Wijk (2003)](https://www.win.tue.nl/~vanwijk/zoompan.pdf).\nA value of `6 ^ 0.25` would be equivalent to the root mean squared average velocity. A value of 1 would produce a circular motion.\n",
        "type": "Float -> Mapbox.Cmd.Internal.Option { a | curve : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "duration",
        "comment": " The animation's duration, measured in milliseconds.\n",
        "type": "Int -> Mapbox.Cmd.Internal.Option { a | duration : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "easing",
        "comment": " The name of an easing function. These must be passed to `elmMapbox`\nin the `easingFunctions` option.\n",
        "type": "String -> Mapbox.Cmd.Internal.Option { a | easing : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "filter",
        "comment": " A filter to limit query results.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.DataExpression Bool -> Mapbox.Cmd.Internal.Option { a | filter : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "intersectsBox",
        "comment": " Only include layers that instersect the box (defined as south west / north east corners).\n",
        "type": "( LngLat.LngLat, LngLat.LngLat ) -> Mapbox.Cmd.Internal.Option { a | query : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "intersectsPoint",
        "comment": " Only include layers that instersect this point.\n",
        "type": "LngLat.LngLat -> Mapbox.Cmd.Internal.Option { a | query : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "layers",
        "comment": " A list of style layer IDs for the query to inspect. Only features within these layers will be returned. If this parameter is not set, all layers will be checked.\n",
        "type": "List String -> Mapbox.Cmd.Internal.Option { a | layers : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "linear",
        "comment": " If true, the map transitions using `easeTo` . If false, the map transitions using `flyTo`.\n",
        "type": "Bool -> Mapbox.Cmd.Internal.Option { a | linear : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "maxDuration",
        "comment": " The animation's maximum duration, measured in milliseconds. If duration exceeds maximum duration, it resets to 0.\n",
        "type": "Float -> Mapbox.Cmd.Internal.Option { a | maxDuration : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "maxZoom",
        "comment": " The maximum zoom level to allow when the map view transitions to the specified bounds.\n",
        "type": "Float -> Mapbox.Cmd.Internal.Option { a | maxZoom : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "minZoom",
        "comment": " The zero-based zoom level at the peak of the flight path.\nIf `curve` is specified, this option is ignored.\n",
        "type": "Float -> Mapbox.Cmd.Internal.Option { a | minZoom : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "offset",
        "comment": " Offset of the target center relative to real map container center at the end of animation.\n",
        "type": "( Int, Int ) -> Mapbox.Cmd.Internal.Option { a | offset : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "padding",
        "comment": " The amount of padding in pixels to add to the given bounds.\n",
        "type": "Mapbox.Cmd.Option.Padding -> Mapbox.Cmd.Internal.Option { a | padding : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "pitch",
        "comment": " The desired pitch, in degrees.\n",
        "type": "Float -> Mapbox.Cmd.Internal.Option { a | pitch : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "screenSpeed",
        "comment": " The average speed of the animation measured in screenfuls per second, assuming a linear timing curve. If `speed` is specified, this option is ignored.\n",
        "type": "Float -> Mapbox.Cmd.Internal.Option { a | screenSpeed : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "speed",
        "comment": " The average speed of the animation defined in relation to `curve`. A speed of 1.2 means that the map appears to move along the flight path by 1.2 times `curve` screenfuls every second. A screenful is the map's visible span. It does not correspond to a fixed physical distance, but varies by zoom level.\n",
        "type": "Float -> Mapbox.Cmd.Internal.Option { a | speed : Mapbox.Cmd.Internal.Supported }"
      },
      {
        "name": "zoom",
        "comment": " The desired zoom level.\n",
        "type": "Float -> Mapbox.Cmd.Internal.Option { a | zoom : Mapbox.Cmd.Internal.Supported }"
      }
    ],
    "generated-with-elm-version": "0.18.0"
  },
  {
    "name": "Mapbox.Layer",
    "comment": " Layers specify what is actually rendered on the map and are rendered in order.\n\nExcept for layers of the background type, each layer needs to refer to a source. Layers take the data that they get from a source, optionally filter features, and then define how those features are styled.\n\nThere are two kinds of properties: *Layout* and *Paint* properties.\n\nLayout properties are applied early in the rendering process and define how data for that layer is passed to the GPU. Changes to a layout property require an asynchronous \"layout\" step.\n\nPaint properties are applied later in the rendering process. Changes to a paint property are cheap and happen synchronously.\n\n\n### Working with layers\n\n@docs Layer, SourceId, encode\n\n\n### Layer Types\n\n@docs background, fill, symbol, line, raster, circle, fillExtrusion, heatmap, hillshade\n@docs Background, Fill, Symbol, Line, Raster, Circle, FillExtrusion, Heatmap, Hillshade\n\n\n### General Attributes\n\n@docs LayerAttr\n@docs metadata, sourceLayer, minzoom, maxzoom, filter, visible\n\n\n### Fill Attributes\n\n@docs fillAntialias, fillColor, fillOpacity, fillOutlineColor, fillPattern, fillTranslate, fillTranslateAnchor\n\n\n### Line Attributes\n\n@docs lineBlur, lineCap, lineColor, lineDasharray, lineGapWidth, lineGradient, lineJoin, lineMiterLimit, lineOffset, lineOpacity, linePattern, lineRoundLimit, lineTranslate, lineTranslateAnchor, lineWidth\n\n\n### Circle Attributes\n\n@docs circleBlur, circleColor, circleOpacity, circlePitchAlignment, circlePitchScale, circleRadius, circleStrokeColor, circleStrokeOpacity, circleStrokeWidth, circleTranslate, circleTranslateAnchor\n\n\n### Heatmap Attributes\n\n@docs heatmapColor, heatmapIntensity, heatmapOpacity, heatmapRadius, heatmapWeight\n\n\n### FillExtrusion Attributes\n\n@docs fillExtrusionBase, fillExtrusionColor, fillExtrusionHeight, fillExtrusionOpacity, fillExtrusionPattern, fillExtrusionTranslate, fillExtrusionTranslateAnchor\n\n\n### Symbol Attributes\n\n@docs iconAllowOverlap, iconAnchor, iconColor, iconHaloBlur, iconHaloColor, iconHaloWidth, iconIgnorePlacement, iconImage, iconKeepUpright, iconOffset, iconOpacity, iconOptional, iconPadding, iconPitchAlignment, iconRotate, iconRotationAlignment, iconSize, iconTextFit, iconTextFitPadding, iconTranslate, iconTranslateAnchor, symbolAvoidEdges, symbolPlacement, symbolSpacing, textAllowOverlap, textAnchor, textColor, textField, textFont, textHaloBlur, textHaloColor, textHaloWidth, textIgnorePlacement, textJustify, textKeepUpright, textLetterSpacing, textLineHeight, textMaxAngle, textMaxWidth, textOffset, textOpacity, textOptional, textPadding, textPitchAlignment, textRotate, textRotationAlignment, textSize, textTransform, textTranslate, textTranslateAnchor\n\n\n### Raster Attributes\n\n@docs rasterBrightnessMax, rasterBrightnessMin, rasterContrast, rasterFadeDuration, rasterHueRotate, rasterOpacity, rasterSaturation\n\n\n### Hillshade Attributes\n\n@docs hillshadeAccentColor, hillshadeExaggeration, hillshadeHighlightColor, hillshadeIlluminationAnchor, hillshadeIlluminationDirection, hillshadeShadowColor\n\n\n### Background Attributes\n\n@docs backgroundColor, backgroundOpacity, backgroundPattern\n\n",
    "aliases": [
      {
        "name": "SourceId",
        "comment": " All layers (except background layers) need a source\n",
        "args": [],
        "type": "String"
      }
    ],
    "types": [
      {
        "name": "Background",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "Circle",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "Fill",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "FillExtrusion",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "Heatmap",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "Hillshade",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "Layer",
        "comment": " Represents a layer.\n",
        "args": [],
        "cases": []
      },
      {
        "name": "LayerAttr",
        "comment": " ",
        "args": [
          "tipe"
        ],
        "cases": []
      },
      {
        "name": "Line",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "Raster",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "Symbol",
        "comment": " ",
        "args": [],
        "cases": []
      }
    ],
    "values": [
      {
        "name": "background",
        "comment": " The background color or pattern of the map.\n",
        "type": "String -> List (Mapbox.Layer.LayerAttr Mapbox.Layer.Background) -> Mapbox.Layer.Layer"
      },
      {
        "name": "backgroundColor",
        "comment": " The color with which the background will be drawn. Paint property. Defaults to `#000000`. Disabled by `backgroundPattern`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Background"
      },
      {
        "name": "backgroundOpacity",
        "comment": " The opacity at which the background will be drawn. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Background"
      },
      {
        "name": "backgroundPattern",
        "comment": " Name of image in sprite to use for drawing an image background. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoom-dependent expressions will be evaluated only at integer zoom levels. Paint property.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression String -> Mapbox.Layer.LayerAttr Mapbox.Layer.Background"
      },
      {
        "name": "circle",
        "comment": " A filled circle.\n",
        "type": "String -> Mapbox.Layer.SourceId -> List (Mapbox.Layer.LayerAttr Mapbox.Layer.Circle) -> Mapbox.Layer.Layer"
      },
      {
        "name": "circleBlur",
        "comment": " Amount to blur the circle. 1 blurs the circle such that only the centerpoint is full opacity. Paint property. Defaults to `0`.\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "circleColor",
        "comment": " The fill color of the circle. Paint property. Defaults to `#000000`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "circleOpacity",
        "comment": " The opacity at which the circle will be drawn. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "circlePitchAlignment",
        "comment": " Orientation of circle when map is pitched. Paint property. Defaults to `viewport`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Anchor -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "circlePitchScale",
        "comment": " Controls the scaling behavior of the circle when the map is pitched. Paint property. Defaults to `map`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Anchor -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "circleRadius",
        "comment": " Circle radius. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `5`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "circleStrokeColor",
        "comment": " The stroke color of the circle. Paint property. Defaults to `#000000`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "circleStrokeOpacity",
        "comment": " The opacity of the circle's stroke. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "circleStrokeWidth",
        "comment": " The width of the circle's stroke. Strokes are placed outside of the `circleRadius`. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `0`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "circleTranslate",
        "comment": " The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively. Paint property.\nUnits in pixels. Defaults to `0,0`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression (Array.Array Float) -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "circleTranslateAnchor",
        "comment": " Controls the frame of reference for `circleTranslate`. Paint property. Defaults to `map`. Requires `circleTranslate`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Anchor -> Mapbox.Layer.LayerAttr Mapbox.Layer.Circle"
      },
      {
        "name": "encode",
        "comment": " Turns a layer into JSON\n",
        "type": "Mapbox.Layer.Layer -> Json.Encode.Value"
      },
      {
        "name": "fill",
        "comment": " A filled polygon with an optional stroked border.\n",
        "type": "String -> Mapbox.Layer.SourceId -> List (Mapbox.Layer.LayerAttr Mapbox.Layer.Fill) -> Mapbox.Layer.Layer"
      },
      {
        "name": "fillAntialias",
        "comment": " Whether or not the fill should be antialiased. Paint property. Defaults to `true`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr Mapbox.Layer.Fill"
      },
      {
        "name": "fillColor",
        "comment": " The color of the filled part of this layer. This color can be specified as `rgba` with an alpha component and the color's opacity will not affect the opacity of the 1px stroke, if it is used. Paint property. Defaults to `#000000`. Disabled by `fillPattern`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Fill"
      },
      {
        "name": "fillExtrusion",
        "comment": " An extruded (3D) polygon.\n",
        "type": "String -> Mapbox.Layer.SourceId -> List (Mapbox.Layer.LayerAttr Mapbox.Layer.FillExtrusion) -> Mapbox.Layer.Layer"
      },
      {
        "name": "fillExtrusionBase",
        "comment": " The height with which to extrude the base of this layer. Must be less than or equal to `fillExtrusionHeight`. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in meters. Defaults to `0`. Requires `fillExtrusionHeight`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.FillExtrusion"
      },
      {
        "name": "fillExtrusionColor",
        "comment": " The base color of the extruded fill. The extrusion's surfaces will be shaded differently based on this color in combination with the root `light` settings. If this color is specified as `rgba` with an alpha component, the alpha component will be ignored; use `fillExtrusionOpacity` to set layer opacity. Paint property. Defaults to `#000000`. Disabled by `fillExtrusionPattern`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.FillExtrusion"
      },
      {
        "name": "fillExtrusionHeight",
        "comment": " The height with which to extrude this layer. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in meters. Defaults to `0`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.FillExtrusion"
      },
      {
        "name": "fillExtrusionOpacity",
        "comment": " The opacity of the entire fill extrusion layer. This is rendered on a per-layer, not per-feature, basis, and data-driven styling is not available. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.FillExtrusion"
      },
      {
        "name": "fillExtrusionPattern",
        "comment": " Name of image in sprite to use for drawing images on extruded fills. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoom-dependent expressions will be evaluated only at integer zoom levels. Paint property.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression String -> Mapbox.Layer.LayerAttr Mapbox.Layer.FillExtrusion"
      },
      {
        "name": "fillExtrusionTranslate",
        "comment": " The geometry's offset. Values are [x, y] where negatives indicate left and up (on the flat plane), respectively. Paint property.\nUnits in pixels. Defaults to `0,0`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression (Array.Array Float) -> Mapbox.Layer.LayerAttr Mapbox.Layer.FillExtrusion"
      },
      {
        "name": "fillExtrusionTranslateAnchor",
        "comment": " Controls the frame of reference for `fillExtrusionTranslate`. Paint property. Defaults to `map`. Requires `fillExtrusionTranslate`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Anchor -> Mapbox.Layer.LayerAttr Mapbox.Layer.FillExtrusion"
      },
      {
        "name": "fillOpacity",
        "comment": " The opacity of the entire fill layer. In contrast to the `fillColor`, this value will also affect the 1px stroke around the fill, if the stroke is used. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Fill"
      },
      {
        "name": "fillOutlineColor",
        "comment": " The outline color of the fill. Matches the value of `fillColor` if unspecified. Paint property. Disabled by `fillPattern`. Requires `fillAntialias` to be `true`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Fill"
      },
      {
        "name": "fillPattern",
        "comment": " Name of image in sprite to use for drawing image fills. For seamless patterns, image width and height must be a factor of two (2, 4, 8, ..., 512). Note that zoom-dependent expressions will be evaluated only at integer zoom levels. Paint property.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression String -> Mapbox.Layer.LayerAttr Mapbox.Layer.Fill"
      },
      {
        "name": "fillTranslate",
        "comment": " The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively. Paint property.\nUnits in pixels. Defaults to `0,0`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression (Array.Array Float) -> Mapbox.Layer.LayerAttr Mapbox.Layer.Fill"
      },
      {
        "name": "fillTranslateAnchor",
        "comment": " Controls the frame of reference for `fillTranslate`. Paint property. Defaults to `map`. Requires `fillTranslate`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Anchor -> Mapbox.Layer.LayerAttr Mapbox.Layer.Fill"
      },
      {
        "name": "filter",
        "comment": " A expression specifying conditions on source features. Only features that match the filter are displayed.\n",
        "type": "Mapbox.Expression.Expression any Bool -> Mapbox.Layer.LayerAttr all"
      },
      {
        "name": "heatmap",
        "comment": " A heatmap.\n",
        "type": "String -> Mapbox.Layer.SourceId -> List (Mapbox.Layer.LayerAttr Mapbox.Layer.Heatmap) -> Mapbox.Layer.Layer"
      },
      {
        "name": "heatmapColor",
        "comment": " Defines the color of each pixel based on its density value in a heatmap. Should be an expression that uses `[\"heatmap-density\"]` as input. Paint property. Defaults to `interpolate,linear,heatmap-density,0,rgba(0, 0, 255, 0),0.1,royalblue,0.3,cyan,0.5,lime,0.7,yellow,1,red`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Heatmap"
      },
      {
        "name": "heatmapIntensity",
        "comment": " Similar to `heatmapWeight` but controls the intensity of the heatmap globally. Primarily used for adjusting the heatmap based on zoom level. Paint property.\n\nShould be greater than or equal to `0`. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Heatmap"
      },
      {
        "name": "heatmapOpacity",
        "comment": " The global opacity at which the heatmap layer will be drawn. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Heatmap"
      },
      {
        "name": "heatmapRadius",
        "comment": " Radius of influence of one heatmap point in pixels. Increasing the value makes the heatmap smoother, but less detailed. Paint property.\n\nShould be greater than or equal to `1`.\nUnits in pixels. Defaults to `30`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Heatmap"
      },
      {
        "name": "heatmapWeight",
        "comment": " A measure of how much an individual point contributes to the heatmap. A value of 10 would be equivalent to having 10 points of weight 1 in the same spot. Especially useful when combined with clustering. Paint property.\n\nShould be greater than or equal to `0`. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Heatmap"
      },
      {
        "name": "hillshade",
        "comment": " Client-side hillshading visualization based on DEM data. Currently, the implementation only supports Mapbox Terrain RGB and Mapzen Terrarium tiles.\n",
        "type": "String -> Mapbox.Layer.SourceId -> List (Mapbox.Layer.LayerAttr Mapbox.Layer.Hillshade) -> Mapbox.Layer.Layer"
      },
      {
        "name": "hillshadeAccentColor",
        "comment": " The shading color used to accentuate rugged terrain like sharp cliffs and gorges. Paint property. Defaults to `#000000`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Hillshade"
      },
      {
        "name": "hillshadeExaggeration",
        "comment": " Intensity of the hillshade Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `0.5`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Hillshade"
      },
      {
        "name": "hillshadeHighlightColor",
        "comment": " The shading color of areas that faces towards the light source. Paint property. Defaults to `#FFFFFF`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Hillshade"
      },
      {
        "name": "hillshadeIlluminationAnchor",
        "comment": " Direction of light source when map is rotated. Paint property. Defaults to `viewport`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Anchor -> Mapbox.Layer.LayerAttr Mapbox.Layer.Hillshade"
      },
      {
        "name": "hillshadeIlluminationDirection",
        "comment": " The direction of the light source used to generate the hillshading with 0 as the top of the viewport if `hillshadeIlluminationAnchor` is set to `viewport` and due north if `hillshadeIlluminationAnchor` is set to `map`. Paint property.\n\nShould be between `0` and `359` inclusive. Defaults to `335`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Hillshade"
      },
      {
        "name": "hillshadeShadowColor",
        "comment": " The shading color of areas that face away from the light source. Paint property. Defaults to `#000000`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Hillshade"
      },
      {
        "name": "iconAllowOverlap",
        "comment": " If true, the icon will be visible even if it collides with other previously drawn symbols. Layout property. Defaults to `false`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconAnchor",
        "comment": " Part of the icon placed closest to the anchor. Layout property. Defaults to `center`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Position -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconColor",
        "comment": " The color of the icon. This can only be used with sdf icons. Paint property. Defaults to `#000000`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconHaloBlur",
        "comment": " Fade out the halo towards the outside. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `0`. Requires `iconImage`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconHaloColor",
        "comment": " The color of the icon's halo. Icon halos can only be used with SDF icons. Paint property. Defaults to `rgba(0, 0, 0, 0)`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconHaloWidth",
        "comment": " Distance of halo to the icon outline. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `0`. Requires `iconImage`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconIgnorePlacement",
        "comment": " If true, other symbols can be visible even if they collide with the icon. Layout property. Defaults to `false`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconImage",
        "comment": " Name of image in sprite to use for drawing an image background. Layout property.\n",
        "type": "Mapbox.Expression.Expression any String -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconKeepUpright",
        "comment": " If true, the icon may be flipped to prevent it from being rendered upside-down. Layout property. Defaults to `false`. Requires `iconImage`. Requires `iconRotationAlignment` to be `map`. Requires `symbolPlacement` to be `line`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconOffset",
        "comment": " Offset distance of icon from its anchor. Positive values indicate right and down, while negative values indicate left and up. Each component is multiplied by the value of `iconSize` to obtain the final offset in pixels. When combined with `iconRotate` the offset will be as if the rotated direction was up. Layout property. Defaults to `0,0`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression any (Array.Array Float) -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconOpacity",
        "comment": " The opacity at which the icon will be drawn. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`. Requires `iconImage`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconOptional",
        "comment": " If true, text will display without their corresponding icons when the icon collides with other symbols and the text does not. Layout property. Defaults to `false`. Requires `iconImage`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconPadding",
        "comment": " Size of the additional area around the icon bounding box used for detecting symbol collisions. Layout property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `2`. Requires `iconImage`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconPitchAlignment",
        "comment": " Orientation of icon when map is pitched. Layout property. Defaults to `auto`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.AnchorAuto -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconRotate",
        "comment": " Rotates the icon clockwise. Layout property.\nUnits in degrees. Defaults to `0`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconRotationAlignment",
        "comment": " In combination with `symbolPlacement`, determines the rotation behavior of icons. Layout property. Defaults to `auto`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.AnchorAuto -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconSize",
        "comment": " Scales the original size of the icon by the provided factor. The new pixel size of the image will be the original pixel size multiplied by `iconSize`. 1 is the original size; 3 triples the size of the image. Layout property.\n\nShould be greater than or equal to `0`.\nUnits in factor of the original icon size. Defaults to `1`. Requires `iconImage`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconTextFit",
        "comment": " Scales the icon to fit around the associated text. Layout property. Defaults to `none`. Requires `iconImage`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.TextFit -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconTextFitPadding",
        "comment": " Size of the additional area added to dimensions determined by `iconTextFit`, in clockwise order: top, right, bottom, left. Layout property.\nUnits in pixels. Defaults to `0,0,0,0`. Requires `iconImage`. Requires `textField`. Requires `iconTextFit` to be both,, or ,width,, or ,height.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression (Array.Array Float) -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconTranslate",
        "comment": " Distance that the icon's anchor is moved from its original placement. Positive values indicate right and down, while negative values indicate left and up. Paint property.\nUnits in pixels. Defaults to `0,0`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression (Array.Array Float) -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "iconTranslateAnchor",
        "comment": " Controls the frame of reference for `iconTranslate`. Paint property. Defaults to `map`. Requires `iconImage`. Requires `iconTranslate`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Anchor -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "line",
        "comment": " A stroked line.\n",
        "type": "String -> Mapbox.Layer.SourceId -> List (Mapbox.Layer.LayerAttr Mapbox.Layer.Line) -> Mapbox.Layer.Layer"
      },
      {
        "name": "lineBlur",
        "comment": " Blur applied to the line, in pixels. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `0`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineCap",
        "comment": " The display of line endings. Layout property. Defaults to `butt`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.LineCap -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineColor",
        "comment": " The color with which the line will be drawn. Paint property. Defaults to `#000000`. Disabled by `linePattern`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineDasharray",
        "comment": " Specifies the lengths of the alternating dashes and gaps that form the dash pattern. The lengths are later scaled by the line width. To convert a dash length to pixels, multiply the length by the current line width. Note that GeoJSON sources with `lineMetrics: true` specified won't render dashed lines to the expected scale. Also note that zoom-dependent expressions will be evaluated only at integer zoom levels. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in line widths. Disabled by `linePattern`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression (Array.Array Float) -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineGapWidth",
        "comment": " Draws a line casing outside of a line's actual path. Value indicates the width of the inner gap. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `0`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineGradient",
        "comment": " Defines a gradient with which to color a line feature. Can only be used with GeoJSON sources that specify `\"lineMetrics\": true`. Paint property. Disabled by `lineDasharray`. Disabled by `linePattern`. Requires `source` to be `geojson`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineJoin",
        "comment": " The display of lines when joining. Layout property. Defaults to `miter`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.LineJoin -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineMiterLimit",
        "comment": " Used to automatically convert miter joins to bevel joins for sharp angles. Layout property. Defaults to `2`. Requires `lineJoin` to be `miter`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineOffset",
        "comment": " The line's offset. For linear features, a positive value offsets the line to the right, relative to the direction of the line, and a negative value to the left. For polygon features, a positive value results in an inset, and a negative value results in an outset. Paint property.\nUnits in pixels. Defaults to `0`.\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineOpacity",
        "comment": " The opacity at which the line will be drawn. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "linePattern",
        "comment": " Name of image in sprite to use for drawing image lines. For seamless patterns, image width must be a factor of two (2, 4, 8, ..., 512). Note that zoom-dependent expressions will be evaluated only at integer zoom levels. Paint property.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression String -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineRoundLimit",
        "comment": " Used to automatically convert round joins to miter joins for shallow angles. Layout property. Defaults to `1.05`. Requires `lineJoin` to be `round`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineTranslate",
        "comment": " The geometry's offset. Values are [x, y] where negatives indicate left and up, respectively. Paint property.\nUnits in pixels. Defaults to `0,0`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression (Array.Array Float) -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineTranslateAnchor",
        "comment": " Controls the frame of reference for `lineTranslate`. Paint property. Defaults to `map`. Requires `lineTranslate`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Anchor -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "lineWidth",
        "comment": " Stroke thickness. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Line"
      },
      {
        "name": "maxzoom",
        "comment": " The maximum zoom level for the layer. At zoom levels equal to or greater than the maxzoom, the layer will be hidden. A number between 0 and 24 inclusive.\n",
        "type": "Float -> Mapbox.Layer.LayerAttr all"
      },
      {
        "name": "metadata",
        "comment": " Arbitrary properties useful to track with the layer, but do not influence rendering. Properties should be prefixed to avoid collisions, like 'mapbox:'.\n",
        "type": "Json.Encode.Value -> Mapbox.Layer.LayerAttr all"
      },
      {
        "name": "minzoom",
        "comment": " The minimum zoom level for the layer. At zoom levels less than the minzoom, the layer will be hidden. A number between 0 and 24 inclusive.\n",
        "type": "Float -> Mapbox.Layer.LayerAttr all"
      },
      {
        "name": "raster",
        "comment": " Raster map textures such as satellite imagery.\n",
        "type": "String -> Mapbox.Layer.SourceId -> List (Mapbox.Layer.LayerAttr Mapbox.Layer.Raster) -> Mapbox.Layer.Layer"
      },
      {
        "name": "rasterBrightnessMax",
        "comment": " Increase or reduce the brightness of the image. The value is the maximum brightness. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Raster"
      },
      {
        "name": "rasterBrightnessMin",
        "comment": " Increase or reduce the brightness of the image. The value is the minimum brightness. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `0`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Raster"
      },
      {
        "name": "rasterContrast",
        "comment": " Increase or reduce the contrast of the image. Paint property.\n\nShould be between `-1` and `1` inclusive. Defaults to `0`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Raster"
      },
      {
        "name": "rasterFadeDuration",
        "comment": " Fade duration when a new tile is added. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in milliseconds. Defaults to `300`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Raster"
      },
      {
        "name": "rasterHueRotate",
        "comment": " Rotates hues around the color wheel. Paint property.\nUnits in degrees. Defaults to `0`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Raster"
      },
      {
        "name": "rasterOpacity",
        "comment": " The opacity at which the image will be drawn. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Raster"
      },
      {
        "name": "rasterSaturation",
        "comment": " Increase or reduce the saturation of the image. Paint property.\n\nShould be between `-1` and `1` inclusive. Defaults to `0`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Raster"
      },
      {
        "name": "sourceLayer",
        "comment": " Layer to use from a vector tile source. Required for vector tile sources; prohibited for all other source types, including GeoJSON sources.\n",
        "type": "String -> Mapbox.Layer.LayerAttr all"
      },
      {
        "name": "symbol",
        "comment": " An icon or a text label.\n",
        "type": "String -> Mapbox.Layer.SourceId -> List (Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol) -> Mapbox.Layer.Layer"
      },
      {
        "name": "symbolAvoidEdges",
        "comment": " If true, the symbols will not cross tile edges to avoid mutual collisions. Recommended in layers that don't have enough padding in the vector tile to prevent collisions, or if it is a point symbol layer placed after a line symbol layer. Layout property. Defaults to `false`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "symbolPlacement",
        "comment": " Label placement relative to its geometry. Layout property. Defaults to `point`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.SymbolPlacement -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "symbolSpacing",
        "comment": " Distance between two symbol anchors. Layout property.\n\nShould be greater than or equal to `1`.\nUnits in pixels. Defaults to `250`. Requires `symbolPlacement` to be `line`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textAllowOverlap",
        "comment": " If true, the text will be visible even if it collides with other previously drawn symbols. Layout property. Defaults to `false`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textAnchor",
        "comment": " Part of the text placed closest to the anchor. Layout property. Defaults to `center`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Position -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textColor",
        "comment": " The color with which the text will be drawn. Paint property. Defaults to `#000000`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textField",
        "comment": " Value to use for a text label. Layout property. Defaults to ``.\n",
        "type": "Mapbox.Expression.Expression any String -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textFont",
        "comment": " Font stack to use for displaying text. Layout property. Defaults to `Open Sans Regular,Arial Unicode MS Regular`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression any (Array.Array String) -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textHaloBlur",
        "comment": " The halo's fadeout distance towards the outside. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `0`. Requires `textField`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textHaloColor",
        "comment": " The color of the text's halo, which helps it stand out from backgrounds. Paint property. Defaults to `rgba(0, 0, 0, 0)`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.Color -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textHaloWidth",
        "comment": " Distance of halo to the font outline. Max text halo width is 1/4 of the font-size. Paint property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `0`. Requires `textField`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textIgnorePlacement",
        "comment": " If true, other symbols can be visible even if they collide with the text. Layout property. Defaults to `false`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textJustify",
        "comment": " Text justification options. Layout property. Defaults to `center`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.TextJustify -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textKeepUpright",
        "comment": " If true, the text may be flipped vertically to prevent it from being rendered upside-down. Layout property. Defaults to `true`. Requires `textField`. Requires `textRotationAlignment` to be `map`. Requires `symbolPlacement` to be `line`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textLetterSpacing",
        "comment": " Text tracking amount. Layout property.\nUnits in ems. Defaults to `0`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textLineHeight",
        "comment": " Text leading value for multi-line text. Layout property.\nUnits in ems. Defaults to `1.2`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textMaxAngle",
        "comment": " Maximum angle change between adjacent characters. Layout property.\nUnits in degrees. Defaults to `45`. Requires `textField`. Requires `symbolPlacement` to be `line`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textMaxWidth",
        "comment": " The maximum line width for text wrapping. Layout property.\n\nShould be greater than or equal to `0`.\nUnits in ems. Defaults to `10`. Requires `textField`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textOffset",
        "comment": " Offset distance of text from its anchor. Positive values indicate right and down, while negative values indicate left and up. Layout property.\nUnits in ems. Defaults to `0,0`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression any (Array.Array Float) -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textOpacity",
        "comment": " The opacity at which the text will be drawn. Paint property.\n\nShould be between `0` and `1` inclusive. Defaults to `1`. Requires `textField`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textOptional",
        "comment": " If true, icons will display without their corresponding text when the text collides with other symbols and the icon does not. Layout property. Defaults to `false`. Requires `textField`. Requires `iconImage`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textPadding",
        "comment": " Size of the additional area around the text bounding box used for detecting symbol collisions. Layout property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `2`. Requires `textField`.\n\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textPitchAlignment",
        "comment": " Orientation of text when map is pitched. Layout property. Defaults to `auto`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.AnchorAuto -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textRotate",
        "comment": " Rotates the text clockwise. Layout property.\nUnits in degrees. Defaults to `0`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textRotationAlignment",
        "comment": " In combination with `symbolPlacement`, determines the rotation behavior of the individual glyphs forming the text. Layout property. Defaults to `auto`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.AnchorAuto -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textSize",
        "comment": " Font size. Layout property.\n\nShould be greater than or equal to `0`.\nUnits in pixels. Defaults to `16`. Requires `textField`.\n\n",
        "type": "Mapbox.Expression.Expression any Float -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textTransform",
        "comment": " Specifies how to capitalize text, similar to the CSS `textTransform` property. Layout property. Defaults to `none`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression any Mapbox.Expression.TextTransform -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textTranslate",
        "comment": " Distance that the text's anchor is moved from its original placement. Positive values indicate right and down, while negative values indicate left and up. Paint property.\nUnits in pixels. Defaults to `0,0`. Requires `textField`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression (Array.Array Float) -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "textTranslateAnchor",
        "comment": " Controls the frame of reference for `textTranslate`. Paint property. Defaults to `map`. Requires `textField`. Requires `textTranslate`.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Mapbox.Expression.Anchor -> Mapbox.Layer.LayerAttr Mapbox.Layer.Symbol"
      },
      {
        "name": "visible",
        "comment": " Whether this layer is displayed.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Bool -> Mapbox.Layer.LayerAttr any"
      }
    ],
    "generated-with-elm-version": "0.18.0"
  },
  {
    "name": "Mapbox.Source",
    "comment": "\n\n\n# Sources\n\n@docs Source, SourceOption\n\n@docs Id, Url\n\n\n### Vector\n\n@docs vector, vectorFromUrl, VectorSource\n\n\n### Raster\n\n@docs raster, tileSize, rasterFromUrl, RasterSource, scheme, Scheme\n\n\n### Raster DEM\n\n@docs rasterDEMMapbox, rasterDEMTerrarium\n\n\n### GeoJSON\n\n@docs geoJSONFromUrl, geoJSONFromValue, GeoJSONSource, buffer, tolerance, cluster, clusterRadius, lineMetrics\n\n\n### Image, Video & Canvas\n\n@docs Coords, image, video, staticCanvas, animatedCanvas\n\n\n### Tiled sources\n\nTiled sources can also take the following attributes:\n\n@docs bounds, minzoom, maxzoom, attribution\n\n\n### Working with sources\n\n@docs encode, getId\n\n",
    "aliases": [
      {
        "name": "Coords",
        "comment": " `(longitude, latitude)` pairs for the corners. You can use the type alias constructor in clockwise order: top left, top right, bottom right, bottom left.\n",
        "args": [],
        "type": "{ topLeft : LngLat.LngLat , topRight : LngLat.LngLat , bottomRight : LngLat.LngLat , bottomLeft : LngLat.LngLat }"
      },
      {
        "name": "Id",
        "comment": " Every layer is identified by an id.\n",
        "args": [],
        "type": "String"
      },
      {
        "name": "Url",
        "comment": " Represents a URL. For tiles hosted by Mapbox, the \"url\" value should be of the form mapbox://mapid.\n",
        "args": [],
        "type": "String"
      }
    ],
    "types": [
      {
        "name": "GeoJSONSource",
        "comment": " Marks attributes that are only applicable to GeoJSON sources\n",
        "args": [],
        "cases": []
      },
      {
        "name": "RasterSource",
        "comment": " Marks attributes that are only applicable to raster sources\n",
        "args": [],
        "cases": []
      },
      {
        "name": "Scheme",
        "comment": " `XYZ`: Slippy map tilenames scheme.\n\n`TMS`: OSGeo spec scheme.\n\n",
        "args": [],
        "cases": [
          [
            "XYZ",
            []
          ],
          [
            "TMS",
            []
          ]
        ]
      },
      {
        "name": "Source",
        "comment": " Sources supply data to be shown on the map. Adding a source won't immediately make data appear on the map because sources don't contain styling details like color or width. Layers refer to a source and give it a visual representation. This makes it possible to style the same source in different ways, like differentiating between types of roads in a highways layer.\n",
        "args": [],
        "cases": []
      },
      {
        "name": "SourceOption",
        "comment": " Some sources can take options.\n",
        "args": [
          "sourceType"
        ],
        "cases": []
      },
      {
        "name": "VectorSource",
        "comment": " Marks attributes that are only applicable to vector sources\n",
        "args": [],
        "cases": []
      }
    ],
    "values": [
      {
        "name": "animatedCanvas",
        "comment": " A data source containing the contents of an HTML canvas. The second argument must be the DOM ID of the canvas element. This method is only appropriate with an animated Canvas (i.e. one that changes over time).\n",
        "type": "Mapbox.Source.Id -> String -> Mapbox.Source.Coords -> Mapbox.Source.Source"
      },
      {
        "name": "attribution",
        "comment": " Contains an attribution to be displayed when the map is shown to a user.\n",
        "type": "String -> Mapbox.Source.SourceOption any"
      },
      {
        "name": "bounds",
        "comment": " The longitude and latitude of the southwest and northeast corners of the source's bounding box. When this property is included in a source, no tiles outside of the given bounds are requested by Mapbox GL.\n",
        "type": "LngLat.LngLat -> LngLat.LngLat -> Mapbox.Source.SourceOption any"
      },
      {
        "name": "buffer",
        "comment": " Size of the tile buffer on each side. A value of 0 produces no buffer. A value of 512 produces a buffer as wide as the tile itself. Larger values produce fewer rendering artifacts near tile edges and slower performance. Defaults to 128.\n",
        "type": "Int -> Mapbox.Source.SourceOption Mapbox.Source.GeoJSONSource"
      },
      {
        "name": "cluster",
        "comment": " If the data is a collection of point features, setting this to true clusters the points by radius into groups.\n",
        "type": "Bool -> Mapbox.Source.SourceOption Mapbox.Source.GeoJSONSource"
      },
      {
        "name": "clusterRadius",
        "comment": " Radius of each cluster if clustering is enabled. A value of 512 indicates a radius equal to the width of a tile.\n",
        "type": "Float -> Mapbox.Source.SourceOption Mapbox.Source.GeoJSONSource"
      },
      {
        "name": "encode",
        "comment": " ",
        "type": "Mapbox.Source.Source -> Json.Encode.Value"
      },
      {
        "name": "geoJSONFromUrl",
        "comment": " A remote GeoJSON source.\n",
        "type": "Mapbox.Source.Id -> Mapbox.Source.Url -> List (Mapbox.Source.SourceOption Mapbox.Source.GeoJSONSource) -> Mapbox.Source.Source"
      },
      {
        "name": "geoJSONFromValue",
        "comment": " A GeoJSON source from some local data.\n",
        "type": "Mapbox.Source.Id -> List (Mapbox.Source.SourceOption Mapbox.Source.GeoJSONSource) -> Json.Encode.Value -> Mapbox.Source.Source"
      },
      {
        "name": "getId",
        "comment": " ",
        "type": "Mapbox.Source.Source -> String"
      },
      {
        "name": "image",
        "comment": " An image source\n",
        "type": "Mapbox.Source.Id -> Mapbox.Source.Url -> Mapbox.Source.Coords -> Mapbox.Source.Source"
      },
      {
        "name": "lineMetrics",
        "comment": " Whether to calculate line distance metrics. This is required for line layers that specify `lineGradient` values.\n",
        "type": "Bool -> Mapbox.Source.SourceOption Mapbox.Source.GeoJSONSource"
      },
      {
        "name": "maxzoom",
        "comment": " Maximum zoom level for which tiles are available, as in the TileJSON spec. Data from tiles at the maxzoom are used when displaying the map at higher zoom levels.\n",
        "type": "Float -> Mapbox.Source.SourceOption any"
      },
      {
        "name": "minzoom",
        "comment": " Minimum zoom level for which tiles are available, as in the TileJSON spec.\n",
        "type": "Float -> Mapbox.Source.SourceOption any"
      },
      {
        "name": "raster",
        "comment": " A raster tile source. Takes a list of one or more tile source URLs, as in the TileJSON spec.\n",
        "type": "Mapbox.Source.Id -> List Mapbox.Source.Url -> List (Mapbox.Source.SourceOption Mapbox.Source.RasterSource) -> Mapbox.Source.Source"
      },
      {
        "name": "rasterDEMMapbox",
        "comment": " The [Mapbox Terrain RGB](https://blog.mapbox.com/global-elevation-data-6689f1d0ba65) DEM source.\n",
        "type": "Mapbox.Source.Id -> Mapbox.Source.Source"
      },
      {
        "name": "rasterDEMTerrarium",
        "comment": " A raster DEM source in the Terarrium format.\n",
        "type": "Mapbox.Source.Id -> Mapbox.Source.Url -> List (Mapbox.Source.SourceOption Mapbox.Source.RasterSource) -> Mapbox.Source.Source"
      },
      {
        "name": "rasterFromUrl",
        "comment": " A raster tile source configured from a TileJSON spec.\n",
        "type": "Mapbox.Source.Id -> Mapbox.Source.Url -> Mapbox.Source.Source"
      },
      {
        "name": "scheme",
        "comment": " Influences the y direction of the tile coordinates. The global-mercator (aka Spherical Mercator) profile is assumed.\n",
        "type": "Mapbox.Source.Scheme -> Mapbox.Source.SourceOption Mapbox.Source.RasterSource"
      },
      {
        "name": "staticCanvas",
        "comment": " A data source containing the contents of an HTML canvas. The second argument must be the DOM ID of the canvas element. This method is only appropriate with a static Canvas (i.e. one that doesn't change), as it will be cached to improve performance.\n",
        "type": "Mapbox.Source.Id -> String -> Mapbox.Source.Coords -> Mapbox.Source.Source"
      },
      {
        "name": "tileSize",
        "comment": " The minimum visual size to display tiles for this layer.\n",
        "type": "Int -> Mapbox.Source.SourceOption Mapbox.Source.RasterSource"
      },
      {
        "name": "tolerance",
        "comment": " Douglas-Peucker simplification tolerance (higher means simpler geometries and faster performance). Defaults to 0.375.\n",
        "type": "Float -> Mapbox.Source.SourceOption Mapbox.Source.GeoJSONSource"
      },
      {
        "name": "vector",
        "comment": " A vector tile source. Tiles must be in [Mapbox Vector Tile format](https://www.mapbox.com/developers/vector-tiles/). All geometric coordinates in vector tiles must be between `-1 * extent` and `(extent * 2) - 1` inclusive. All layers that use a vector source must specify a `sourceLayer` value.\n\nThis takes an array of one or more tile source URLs, as in the TileJSON spec.\n\n",
        "type": "Mapbox.Source.Id -> List Mapbox.Source.Url -> List (Mapbox.Source.SourceOption Mapbox.Source.VectorSource) -> Mapbox.Source.Source"
      },
      {
        "name": "vectorFromUrl",
        "comment": " A vector tile source. Tiles must be in [Mapbox Vector Tile format](https://www.mapbox.com/developers/vector-tiles/). All geometric coordinates in vector tiles must be between `-1 * extent` and `(extent * 2) - 1` inclusive. All layers that use a vector source must specify a `sourceLayer` value.\n\nThe first argument is the layers id, the second is a url to a [TileJSON specification](https://github.com/mapbox/tilejson-spec) that configures the source.\n\n",
        "type": "Mapbox.Source.Id -> Mapbox.Source.Url -> Mapbox.Source.Source"
      },
      {
        "name": "video",
        "comment": " A video source. For each URL in the list, a video element source will be created, in order to support same media in multiple formats supported by different browsers.\n",
        "type": "Mapbox.Source.Id -> List Mapbox.Source.Url -> Mapbox.Source.Coords -> Mapbox.Source.Source"
      }
    ],
    "generated-with-elm-version": "0.18.0"
  },
  {
    "name": "Mapbox.Expression",
    "comment": " Expressions form a little language that can be used to compute values for various layer properties.\n\nIt is recommended to import them in the following fashion:\n\n    import Mapbox.Expression as E exposing (str, float, int, true, false)\n\nThis way you can use the language without much syntactic fuss and you have easy access to the literals.\n\n**Note**: If you are familiar with the JS version of the style spec,\nwe have made a few changes. Argument order has been switched for many functions to support using pipeline style more naturally. Some functions use overloading in the original, these have been renamed to\nnot be overloaded. Finally, we have chosen not to represent some parts of the spec that are superflous (especially when used from Elm), namely functions and let-in expressions.\n\n@docs Expression, DataExpression, CameraExpression\n\n@docs encode\n\n\n### Types\n\nAll of the types used as expression results are phantom (i.e. they don't have any runtime values but are used purely for compile-time checking). As such we use a mix of standard elm types for their familiarty:\n\n  - `Float`\n  - `String`\n  - `Array`\n  - `Bool`\n\nWe introduce the following types:\n\n@docs Color, Object, Collator\n\n(And also a bunch of Enum types, that will be documented in the Enums section).\n\nYou can use the following functions to transfer Elm values into the Expression language:\n\n@docs true, false, bool, int, float, str, rgba, floats, strings, object, collator, defaultCollator\n\nIn some cases, you will need to force the type system to cooperate.\nThe following assertions will force the type and cause a run-time error\nif the type is wrong:\n\n@docs assertArray, assertArrayOfStrings, assertArrayOfFloats, assertArrayOfBools, assertBool, assertFloat, assertObject, assertString\n\nYou can also use these functions to explicitly cast to a particular type:\n\n@docs toBool, toColor, toFloat, toString\n\n@docs typeof\n\n\n### Lookup\n\n@docs at, get, has, count, length\n\n\n### Feature data\n\n@docs featureState, geometryType, id, properties, getProperty, hasProperty\n\n\n### Decision\n\nThe expressions in this section can be used to add conditional logic to your styles.\n\n@docs isEqual, notEqual, lessThan, lessThanOrEqual, greaterThan, greaterThanOrEqual\n\nStrings can be compared with a collator for locale specific comparisons:\n\n@docs isEqualWithCollator, notEqualWithCollator,lessThanWithCollator, lessThanOrEqualWithCollator, greaterThanWithCollator, greaterThanOrEqualWithCollator\n\nLogical operators:\n\n@docs not, all, any\n\nControl flow:\n\n@docs ifElse, conditionally, matchesStr, matchesFloat, coalesce\n\n\n### Ramps, scales, curves\n\n@docs interpolate, Interpolation, step\n\n\n### String\n\n@docs append, downcase, upcase, isSupportedScript, resolvedLocale\n\n\n### Color\n\n@docs makeRGBColor, makeRGBAColor, rgbaChannels\n\n\n### Math\n\n@docs minus, multiply, divideBy, modBy, plus, raiseBy, sqrt, abs, ceil, floor, round, cos, sin, tan, acos, asin, atan, e, pi, ln, ln2, log10, log2\n\n\n### Zoom\n\n@docs zoom\n\n\n### Heatmap\n\n@docs heatmapDensity, lineProgress\n\n\n### Enums\n\nThese are required for various layer properties.\n\n@docs Anchor, anchorMap, anchorViewport, AnchorAuto, anchorAutoMap, anchorAutoViewport, anchorAutoAuto, Position, positionCenter, positionLeft, positionRight, positionTop, positionBottom, positionTopLeft, positionTopRight, positionBottomLeft, positionBottomRight, TextFit, textFitNone, textFitWidth, textFitHeight, textFitBoth, LineCap, lineCapButt, lineCapRound, lineCapSquare, LineJoin, lineJoinBevel, lineJoinRound, lineJoinMiter, SymbolPlacement, symbolPlacementPoint, symbolPlacementLine, TextJustify, textJustifyLeft, textJustifyCenter, textJustifyRight, TextTransform, textTransformNone, textTransformUppercase, textTransformLowercase\n\n",
    "aliases": [],
    "types": [
      {
        "name": "Anchor",
        "comment": " ",
        "args": [],
        "cases": [
          [
            "Map",
            []
          ],
          [
            "Viewport",
            []
          ]
        ]
      },
      {
        "name": "AnchorAuto",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "CameraExpression",
        "comment": " A camera expression is any expression that uses the zoom operator. Such expressions allow the the appearance of a layer\nto change with the map's zoom level. Camera expressions can be used to create the appearance of depth and to control data density.\n\n    zoom\n        |> interpolate Linear\n            [ ( 5, int 1 )\n            , ( 10, int 5 )\n            ]\n        |> Layer.circleRadius\n\nThis example uses the `interpolate` operator to define a linear relationship between zoom level and circle size using a set of input-output pairs. In this case, the expression indicates that the circle radius should be 1 pixel when the zoom level is 5 or below, and 5 pixels when the zoom is 10 or above. In between, the radius will be linearly interpolated between 1 and 5 pixels\n\nCamera expressions are allowed anywhere an expression may be used. However, when a camera expression used as the value of a layout or paint property, the `zoom` operator must appear only as the input to an outer `interpolate` or `step` expression\n\nThere is an important difference between layout and paint properties in the timing of camera expression evaluation. Paint property camera expressions are re-evaluated whenever the zoom level changes, even fractionally. For example, a paint property camera expression will be re-evaluated continuously as the map moves between zoom levels 4.1 and 4.6. On the other hand, a layout property camera expression is evaluated only at integer zoom levels. It will not be re-evaluated as the zoom changes from 4.1 to 4.6 -- only if it goes above 5 or below 4.\n\n",
        "args": [],
        "cases": []
      },
      {
        "name": "Collator",
        "comment": " Used for locale sensitive string comparisons.\n",
        "args": [],
        "cases": []
      },
      {
        "name": "Color",
        "comment": " Represents a color value\n",
        "args": [],
        "cases": []
      },
      {
        "name": "DataExpression",
        "comment": " A data expression is any expression that access feature data -- that is, any expression that uses one of the data operators: `getProperty`, `hasProperty` , `id`, `geometryType`, or `properties`. Data expressions allow a feature's properties to determine its appearance. They can be used to differentiate features within the same layer and to create data visualizations.\n\n    makeRGBColor\n        -- red is higher when feature.properties.temperature is higher\n        (getProperty \"temperature\")\n        -- green is always zero\n        (int 0)\n        -- blue is higher when feature.properties.temperature is lower\n        (getProperty \"temperature\" |> minus 100)\n        |> Layer.circleColor\n\nThis example uses the `getProperty` operator to obtain the temperature value of each feature. That value is used to compute arguments to the `makeRGBColor` operator, defining a color in terms of its red, green, and blue components.\n\n",
        "args": [],
        "cases": []
      },
      {
        "name": "Expression",
        "comment": " Expressions are zero overhead wrappers over the underlying JSON language that attempt to provide some type safety.\n\nNote however, that while being a strictly typed language, it has slighlty different semantics tham Elm:\n\n  - There is only a single number type. I have denoted it `Float`. You will notice that the `int` function takes an Elm int\n    value and converts it to an `Expression expr Float`.\n  - All values may be `null`. There is no `Maybe` type. You can use the `coalesce` function to handle this.\n  - There is no distinction between `List`, `Array`, and tuples. Hence all collections are labeled as `Array`.\n  - Dictionaries are called `Object`. The keys are always `String`, but the values can be of mixed types. Hence retrieving\n    values from them makes code untyped.\n  - You can force the types of things using the `assert...` functions. This will generate a runtime error if the type doesn't\n    match. This should be necessary only rarely.\n\nThe `exprType` can be:\n\n  - `CameraExpression`\n  - `DataExpression`\n  - or a type variable representing either of the above\n\nThe intent is to help you not break your style by using a DataExpression (for example) where it isn't supported. However, this isn't entirely foolproof, so some caution is advised.\n\n",
        "args": [
          "exprType",
          "resultType"
        ],
        "cases": []
      },
      {
        "name": "Interpolation",
        "comment": " Interpolation types:\n\n  - `Linear`: interpolates linearly between the pair of stops just less than and just greater than the input.\n  - `Exponential base`: interpolates exponentially between the stops just less than and just greater than the input. `base` controls the rate at which the output increases: higher values make the output increase more towards the high end of the range. With values close to 1 the output increases linearly.\n  - `CubicBezier (x1, y1)  (x2, y2)`: interpolates using the cubic bezier curve defined by the given control points.\n\n",
        "args": [],
        "cases": [
          [
            "Linear",
            []
          ],
          [
            "Exponential",
            [
              "Float"
            ]
          ],
          [
            "CubicBezier",
            [
              "( Float, Float )",
              "( Float, Float )"
            ]
          ]
        ]
      },
      {
        "name": "LineCap",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "LineJoin",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "Object",
        "comment": " Represents a mixed-type dictionary where keys are always strings\n",
        "args": [],
        "cases": []
      },
      {
        "name": "Position",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "SymbolPlacement",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "TextFit",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "TextJustify",
        "comment": " ",
        "args": [],
        "cases": []
      },
      {
        "name": "TextTransform",
        "comment": " ",
        "args": [],
        "cases": []
      }
    ],
    "values": [
      {
        "name": "abs",
        "comment": " Returns the absolute value of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "acos",
        "comment": " Returns the arccosine of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "all",
        "comment": " Returns true if all the inputs are true, false otherwise. The inputs are evaluated in order, and evaluation is short-circuiting: once an input expression evaluates to false, the result is false and no further input expressions are evaluated.\n",
        "type": "List (Mapbox.Expression.Expression exprType Bool) -> Mapbox.Expression.Expression exprType Bool"
      },
      {
        "name": "anchorAutoAuto",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.AnchorAuto"
      },
      {
        "name": "anchorAutoMap",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.AnchorAuto"
      },
      {
        "name": "anchorAutoViewport",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.AnchorAuto"
      },
      {
        "name": "anchorMap",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Anchor"
      },
      {
        "name": "anchorViewport",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Anchor"
      },
      {
        "name": "any",
        "comment": " Returns true if any of the inputs are true, false otherwise. The inputs are evaluated in order, and evaluation is short-circuiting: once an input expression evaluates to true, the result is true and no further input expressions are evaluated.\n",
        "type": "List (Mapbox.Expression.Expression exprType Bool) -> Mapbox.Expression.Expression exprType Bool"
      },
      {
        "name": "append",
        "comment": " Returns a string consisting of the concatenation of the inputs.\n\nArgument order designed for pipelines:\n\n    a |> append b --> a ++ b\n\n",
        "type": "Mapbox.Expression.Expression exprType String -> Mapbox.Expression.Expression exprType String -> Mapbox.Expression.Expression exprType String"
      },
      {
        "name": "asin",
        "comment": " Returns the arcsine of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "assertArray",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType (Array.Array any)"
      },
      {
        "name": "assertArrayOfBools",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType (Array.Array Bool)"
      },
      {
        "name": "assertArrayOfFloats",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType (Array.Array Float)"
      },
      {
        "name": "assertArrayOfStrings",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType (Array.Array String)"
      },
      {
        "name": "assertBool",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType Bool"
      },
      {
        "name": "assertFloat",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "assertObject",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType Mapbox.Expression.Object"
      },
      {
        "name": "assertString",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType String"
      },
      {
        "name": "at",
        "comment": " Retrieves an item from an array.\n",
        "type": "Mapbox.Expression.Expression exprType1 Float -> Mapbox.Expression.Expression exprType2 (Array.Array a) -> Mapbox.Expression.Expression exprType2 a"
      },
      {
        "name": "atan",
        "comment": " Returns the arctangent of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "bool",
        "comment": " ",
        "type": "Bool -> Mapbox.Expression.Expression exprType Bool"
      },
      {
        "name": "ceil",
        "comment": " Returns the smallest integer that is greater than or equal to the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "coalesce",
        "comment": " Evaluates each expression in turn until the first non-null value is obtained, and returns that value.\n",
        "type": "List (Mapbox.Expression.Expression exprType outputType) -> Mapbox.Expression.Expression exprType outputType"
      },
      {
        "name": "collator",
        "comment": " Returns a `Collator` for use in locale-dependent comparison operations. The first argument specifies if the comparison should be case sensitive. The second specifies if it is diacritic sensitive. The final locale argument specifies the IETF language tag of the locale to use.\n",
        "type": "Mapbox.Expression.Expression e1 Bool -> Mapbox.Expression.Expression e2 Bool -> Mapbox.Expression.Expression e3 String -> Mapbox.Expression.Expression e4 Mapbox.Expression.Collator"
      },
      {
        "name": "conditionally",
        "comment": " Selects the first output whose condition evaluates to `true`\n",
        "type": "List ( Mapbox.Expression.Expression exprType1 Bool , Mapbox.Expression.Expression exprType2 output ) -> Mapbox.Expression.Expression exprType2 output -> Mapbox.Expression.Expression exprType1 output"
      },
      {
        "name": "cos",
        "comment": " Returns the cosine of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "count",
        "comment": " Gets the length of an array.\n",
        "type": "Mapbox.Expression.Expression exprType (Array.Array any) -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "defaultCollator",
        "comment": " Returns a `Collator` with the default locale (which depends on the system running the code), which is not sensitive to case nor diacritic.\n",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Collator"
      },
      {
        "name": "divideBy",
        "comment": " Returns the result of floating point division of the second input by the first.\n\n    a |> divideBy b --> a / b\n\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "downcase",
        "comment": " Returns the input string converted to lowercase. Follows the Unicode Default Case Conversion algorithm and the locale-insensitive case mappings in the Unicode Character Database.\n",
        "type": "Mapbox.Expression.Expression exprType String -> Mapbox.Expression.Expression exprType String"
      },
      {
        "name": "e",
        "comment": " Returns the mathematical constant e.\n",
        "type": "Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "encode",
        "comment": " Turns an expression into JSON\n",
        "type": "Mapbox.Expression.Expression exprType a -> Json.Encode.Value"
      },
      {
        "name": "false",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Bool"
      },
      {
        "name": "featureState",
        "comment": " Retrieves a property value from the current feature's state. Returns null if the requested property is not present on the feature's state. A feature's state is not part of the GeoJSON or vector tile data, and must be set programmatically on each feature. Note that `featureState` can only be used with paint properties that support data-driven styling.\n",
        "type": "Mapbox.Expression.Expression exprType String -> Mapbox.Expression.Expression Mapbox.Expression.DataExpression any"
      },
      {
        "name": "float",
        "comment": " ",
        "type": "Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "floats",
        "comment": " ",
        "type": "List Float -> Mapbox.Expression.Expression exprType (Array.Array Float)"
      },
      {
        "name": "floor",
        "comment": " Returns the largest integer that is less than or equal to the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "geometryType",
        "comment": " Gets the feature's geometry type: Point, MultiPoint, LineString, MultiLineString, Polygon, MultiPolygon.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.DataExpression String"
      },
      {
        "name": "get",
        "comment": " Retrieves a property value from an object. Returns null if the requested property is missing.\n",
        "type": "Mapbox.Expression.Expression exprType1 String -> Mapbox.Expression.Expression exprType2 Mapbox.Expression.Object -> Mapbox.Expression.Expression exprType2 any"
      },
      {
        "name": "getProperty",
        "comment": " Retrieves a property value from the current feature's properties. Returns null if the requested property is missing.\n",
        "type": "Mapbox.Expression.Expression exprType String -> Mapbox.Expression.Expression Mapbox.Expression.DataExpression any"
      },
      {
        "name": "greaterThan",
        "comment": " Returns true if the first input is strictly greater than the second, false otherwise.\n",
        "type": "Mapbox.Expression.Expression exprType1 comparable -> Mapbox.Expression.Expression exprType2 comparable -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "greaterThanOrEqual",
        "comment": " Returns true if the first input is greater than or equal to the second, false otherwise.\n",
        "type": "Mapbox.Expression.Expression exprType1 comparable -> Mapbox.Expression.Expression exprType2 comparable -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "greaterThanOrEqualWithCollator",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType1 String -> Mapbox.Expression.Expression exprType2 String -> Mapbox.Expression.Expression exprType3 Mapbox.Expression.Collator -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "greaterThanWithCollator",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType1 String -> Mapbox.Expression.Expression exprType2 String -> Mapbox.Expression.Expression exprType3 Mapbox.Expression.Collator -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "has",
        "comment": " Tests for the presence of an property value in an object.\n",
        "type": "Mapbox.Expression.Expression exprType1 String -> Mapbox.Expression.Expression exprType2 Mapbox.Expression.Object -> Mapbox.Expression.Expression exprType2 Bool"
      },
      {
        "name": "hasProperty",
        "comment": " Tests for the presence of an property value in the current feature's properties.\n",
        "type": "Mapbox.Expression.Expression exprType String -> Mapbox.Expression.Expression Mapbox.Expression.DataExpression Bool"
      },
      {
        "name": "heatmapDensity",
        "comment": " Gets the kernel density estimation of a pixel in a heatmap layer, which is a relative measure of how many data points are crowded around a particular pixel. Can only be used in the `heatmapColor` property.\n",
        "type": "Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "id",
        "comment": " Gets the feature's id, if it has one.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.DataExpression any"
      },
      {
        "name": "ifElse",
        "comment": " The ternary operator:\n\n    Layer.iconImage <|\n      ifElse\n        (greaterThan (getProperty (str \"size\")) (float 30))\n        (str \"hospital-32\")\n        (str \"clinic-32\")\n\n",
        "type": "Mapbox.Expression.Expression exprType1 Bool -> Mapbox.Expression.Expression exprType2 output -> Mapbox.Expression.Expression exprType3 output -> Mapbox.Expression.Expression exprType1 output"
      },
      {
        "name": "int",
        "comment": " ",
        "type": "Int -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "interpolate",
        "comment": " Produces continuous, smooth results by interpolating between pairs of input and output values (\"stops\"). The output type must be `Float`, `Array Float`, or `Color`.\n\n    zoom\n        |> interpolate Linear\n            [ ( 5, int 1 )\n            , ( 10, int 5 )\n            ]\n        |> Layer.circleRadius\n\n",
        "type": "Mapbox.Expression.Interpolation -> List ( Float, Mapbox.Expression.Expression exprType2 outputType ) -> Mapbox.Expression.Expression exprType1 Float -> Mapbox.Expression.Expression exprType1 outputType"
      },
      {
        "name": "isEqual",
        "comment": " Returns true if the input values are equal, false otherwise.\n",
        "type": "Mapbox.Expression.Expression exprType1 a -> Mapbox.Expression.Expression exprType2 a -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "isEqualWithCollator",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType1 String -> Mapbox.Expression.Expression exprType2 String -> Mapbox.Expression.Expression exprType3 Mapbox.Expression.Collator -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "isSupportedScript",
        "comment": " Returns true if the input string is expected to render legibly. Returns false if the input string contains sections that cannot be rendered without potential loss of meaning (e.g. Indic scripts that require complex text shaping, or right-to-left scripts if the the mapbox-gl-rtl-text plugin is not in use in Mapbox GL JS).\n",
        "type": "Mapbox.Expression.Expression exprType String -> Mapbox.Expression.Expression exprType Bool"
      },
      {
        "name": "length",
        "comment": " Gets the length of a string.\n",
        "type": "Mapbox.Expression.Expression exprType String -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "lessThan",
        "comment": " Returns true if the first input is strictly less than the second, false otherwise.\n",
        "type": "Mapbox.Expression.Expression exprType1 comparable -> Mapbox.Expression.Expression exprType2 comparable -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "lessThanOrEqual",
        "comment": " Returns true if the first input is less than or equal to the second, false otherwise.\n",
        "type": "Mapbox.Expression.Expression exprType1 comparable -> Mapbox.Expression.Expression exprType2 comparable -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "lessThanOrEqualWithCollator",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType1 String -> Mapbox.Expression.Expression exprType2 String -> Mapbox.Expression.Expression exprType3 Mapbox.Expression.Collator -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "lessThanWithCollator",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType1 String -> Mapbox.Expression.Expression exprType2 String -> Mapbox.Expression.Expression exprType3 Mapbox.Expression.Collator -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "lineCapButt",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.LineCap"
      },
      {
        "name": "lineCapRound",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.LineCap"
      },
      {
        "name": "lineCapSquare",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.LineCap"
      },
      {
        "name": "lineJoinBevel",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.LineJoin"
      },
      {
        "name": "lineJoinMiter",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.LineJoin"
      },
      {
        "name": "lineJoinRound",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.LineJoin"
      },
      {
        "name": "lineProgress",
        "comment": " Gets the progress along a gradient line. Can only be used in the `lineGradient` property.\n",
        "type": "Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "ln",
        "comment": " Returns the natural logarithm of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "ln2",
        "comment": " Returns mathematical constant ln(2).\n",
        "type": "Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "log10",
        "comment": " Returns the base-ten logarithm of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "log2",
        "comment": " Returns the base-two logarithm of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "makeRGBAColor",
        "comment": " Creates a color value from red, green, blue components, which must range between 0 and 255, and an alpha component which must range between 0 and 1. If any component is out of range, the expression is an error.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Mapbox.Expression.Color"
      },
      {
        "name": "makeRGBColor",
        "comment": " Creates a color value from red, green, and blue components, which must range between 0 and 255, and an alpha component of 1. If any component is out of range, the expression is an error.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Mapbox.Expression.Color"
      },
      {
        "name": "matchesFloat",
        "comment": " Selects the output whose label value matches the input value, or the fallback value if no match is found.\n\n    getProperty (str \"size\")\n      |> matchesStr\n          [ (1, str \"icon-hospital\")\n          , (2, str \"icon-medical\")\n          ]\n          (str \"icon-generic\") -- fallback value\n      |> Layer.iconImage\n\n",
        "type": "List ( Float, Mapbox.Expression.Expression exprType2 output ) -> Mapbox.Expression.Expression exprType1 output -> Mapbox.Expression.Expression exprType3 Float -> Mapbox.Expression.Expression exprType3 output"
      },
      {
        "name": "matchesStr",
        "comment": " Selects the output whose label value matches the input value, or the fallback value if no match is found.\n\n    getProperty (str \"type\")\n      |> matchesStr\n          [ (\"hospital\", str \"icon-hospital\")\n          , (\"clinic\", str \"icon-medical\")\n          ]\n          (str \"icon-generic\") -- fallback value\n      |> Layer.iconImage\n\n",
        "type": "List ( String, Mapbox.Expression.Expression exprType2 output ) -> Mapbox.Expression.Expression exprType1 output -> Mapbox.Expression.Expression exprType3 String -> Mapbox.Expression.Expression exprType3 output"
      },
      {
        "name": "minus",
        "comment": " Returns the result of subtracting the first input from the second.\n\n    a |> minus b --> a - b\n\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "modBy",
        "comment": " Returns the remainder after integer division of the second input by the first.\n\n    a |> modBy b --> a % b\n\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "multiply",
        "comment": " Returns the product of the inputs.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "not",
        "comment": " Logical negation. Returns true if the input is false, and false if the input is true.\n",
        "type": "Mapbox.Expression.Expression exprType Bool -> Mapbox.Expression.Expression exprType Bool"
      },
      {
        "name": "notEqual",
        "comment": " Returns true if the input values are not equal, false otherwise.\n",
        "type": "Mapbox.Expression.Expression exprType1 a -> Mapbox.Expression.Expression exprType2 a -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "notEqualWithCollator",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType1 String -> Mapbox.Expression.Expression exprType2 String -> Mapbox.Expression.Expression exprType3 Mapbox.Expression.Collator -> Mapbox.Expression.Expression exprType1 Bool"
      },
      {
        "name": "object",
        "comment": " Takes a list of key value pairs. The values are JSON Values,\ntherefore allowing for mixed types.\n",
        "type": "List ( String, Json.Encode.Value ) -> Mapbox.Expression.Expression exprType Mapbox.Expression.Object"
      },
      {
        "name": "pi",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "plus",
        "comment": " Returns the sum of the inputs.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "positionBottom",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Position"
      },
      {
        "name": "positionBottomLeft",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Position"
      },
      {
        "name": "positionBottomRight",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Position"
      },
      {
        "name": "positionCenter",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Position"
      },
      {
        "name": "positionLeft",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Position"
      },
      {
        "name": "positionRight",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Position"
      },
      {
        "name": "positionTop",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Position"
      },
      {
        "name": "positionTopLeft",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Position"
      },
      {
        "name": "positionTopRight",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Position"
      },
      {
        "name": "properties",
        "comment": " Gets the feature properties object. Note that in some cases, it may be more efficient to use `getProperty (str \"property-name\")` directly.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.DataExpression Mapbox.Expression.Object"
      },
      {
        "name": "raiseBy",
        "comment": " Returns the result of raising the second input to the power specified by the first.\n\n    a |> raiseBy b --> a ^ b\n\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "resolvedLocale",
        "comment": " Returns the IETF language tag of the locale being used by the provided collator. This can be used to determine the default system locale, or to determine if a requested locale was successfully loaded.\n",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Collator -> Mapbox.Expression.Expression exprType String"
      },
      {
        "name": "rgba",
        "comment": " ",
        "type": "Float -> Float -> Float -> Float -> Mapbox.Expression.Expression exprType Mapbox.Expression.Color"
      },
      {
        "name": "rgbaChannels",
        "comment": " Returns a four-element array containing the input color's red, green, blue, and alpha components, in that order.\n",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.Color -> Mapbox.Expression.Expression exprType (Array.Array Float)"
      },
      {
        "name": "round",
        "comment": " Rounds the input to the nearest integer. Halfway values are rounded away from zero. For example, `round  (float -1.5)` evaluates to -2.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "sin",
        "comment": " Returns the sine of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "sqrt",
        "comment": " Returns the square root of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "step",
        "comment": " Produces discrete, stepped results by evaluating a piecewise-constant function defined by pairs of input and output values (\"stops\"). Stop inputs must be Floats in strictly ascending order. Returns the output value of the stop just less than the input, or the first input if the input is less than the first stop.\n\n    zoom\n        |> step (int 1)\n            [ ( 5, int 3 )\n            , ( 10, int 5 )\n            ]\n        |> Layer.circleRadius\n\n",
        "type": "Mapbox.Expression.Expression exprType2 Float -> List ( Float, Mapbox.Expression.Expression exprType1 output ) -> Mapbox.Expression.Expression exprType1 output -> Mapbox.Expression.Expression exprType2 output"
      },
      {
        "name": "str",
        "comment": " ",
        "type": "String -> Mapbox.Expression.Expression exprType String"
      },
      {
        "name": "strings",
        "comment": " ",
        "type": "List String -> Mapbox.Expression.Expression exprType (Array.Array String)"
      },
      {
        "name": "symbolPlacementLine",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.SymbolPlacement"
      },
      {
        "name": "symbolPlacementPoint",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.SymbolPlacement"
      },
      {
        "name": "tan",
        "comment": " Returns the tangent of the input.\n",
        "type": "Mapbox.Expression.Expression exprType Float -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "textFitBoth",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.TextFit"
      },
      {
        "name": "textFitHeight",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.TextFit"
      },
      {
        "name": "textFitNone",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.TextFit"
      },
      {
        "name": "textFitWidth",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.TextFit"
      },
      {
        "name": "textJustifyCenter",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.TextJustify"
      },
      {
        "name": "textJustifyLeft",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.TextJustify"
      },
      {
        "name": "textJustifyRight",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.TextJustify"
      },
      {
        "name": "textTransformLowercase",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.TextTransform"
      },
      {
        "name": "textTransformNone",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.TextTransform"
      },
      {
        "name": "textTransformUppercase",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Mapbox.Expression.TextTransform"
      },
      {
        "name": "toBool",
        "comment": " Converts the input value to a boolean. The result is false when then input is an empty string, 0, false, null, or NaN; otherwise it is true.\n",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType Bool"
      },
      {
        "name": "toColor",
        "comment": " Converts the input value to a color. If it can't be converted, the falback value will be used.\n\n    input\n      |> toColor (rgba 0 0 0 1) -- fallback color\n\n",
        "type": "Mapbox.Expression.Expression exprType2 Mapbox.Expression.Color -> Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType Mapbox.Expression.Color"
      },
      {
        "name": "toFloat",
        "comment": " Converts the input value to a number, if possible. If the input is null or false, the result is 0. If the input is true, the result is 1. If the input is a string, it is converted to a number as specified by the [\"ToNumber Applied to the String Type\" algorithm of the ECMAScript Language Specification](https://tc39.github.io/ecma262/#sec-tonumber-applied-to-the-string-type). If this fails, the fallback value is used.\n\n    input\n      |> toFloat 0 -- fallback\n\n",
        "type": "Float -> Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType Float"
      },
      {
        "name": "toString",
        "comment": " Converts the input value to a string. If the input is `null`, the result is `\"\"`. If the input is a boolean, the result is `\"true\"` or `\"false\"`. If the input is a number, it is converted to a string as specified by the [\"NumberToString\" algorithm](https://tc39.github.io/ecma262/#sec-tostring-applied-to-the-number-type) of the ECMAScript Language Specification. If the input is a color, it is converted to a string of the form `\"rgba(r,g,b,a)\"`, where r, g, and b are numerals ranging from 0 to 255, and a ranges from 0 to 1. Otherwise, the input is converted to a string in the format specified by the [`JSON.stringify`](https://tc39.github.io/ecma262/#sec-json.stringify) function of the ECMAScript Language Specification.\n",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType String"
      },
      {
        "name": "true",
        "comment": " ",
        "type": "Mapbox.Expression.Expression exprType Bool"
      },
      {
        "name": "typeof",
        "comment": " Returns a string describing the type of the given value.\n",
        "type": "Mapbox.Expression.Expression exprType any -> Mapbox.Expression.Expression exprType String"
      },
      {
        "name": "upcase",
        "comment": " Returns the input string converted to uppercase. Follows the Unicode Default Case Conversion algorithm and the locale-insensitive case mappings in the Unicode Character Database.\n",
        "type": "Mapbox.Expression.Expression exprType String -> Mapbox.Expression.Expression exprType String"
      },
      {
        "name": "zoom",
        "comment": " Gets the current zoom level. Note that in style layout and paint properties, `zoom` may only appear as the input to a top-level `step` or `interpolate` expression.\n",
        "type": "Mapbox.Expression.Expression Mapbox.Expression.CameraExpression Float"
      }
    ],
    "generated-with-elm-version": "0.18.0"
  },
  {
    "name": "LngLat",
    "comment": " Encodes geographic position.\n\n@docs LngLat, encodeAsPair, encodeAsObject, decodeFromPair, decodeFromObject, map\n\n",
    "aliases": [
      {
        "name": "LngLat",
        "comment": " A LngLat represents a geographic position.\n",
        "args": [],
        "type": "{ lng : Float, lat : Float }"
      }
    ],
    "types": [],
    "values": [
      {
        "name": "decodeFromObject",
        "comment": " We can also encode from an `{lng: 32, lat: 435}` object.\n",
        "type": "Json.Decode.Decoder LngLat.LngLat"
      },
      {
        "name": "decodeFromPair",
        "comment": " Most implementations seem to encode these as a 2 member array.\n",
        "type": "Json.Decode.Decoder LngLat.LngLat"
      },
      {
        "name": "encodeAsObject",
        "comment": " We can also encode as an `{lng: 32, lat: 435}` object.\n",
        "type": "LngLat.LngLat -> Json.Encode.Value"
      },
      {
        "name": "encodeAsPair",
        "comment": " Most implementations seem to encode these as a 2 member array.\n",
        "type": "LngLat.LngLat -> Json.Encode.Value"
      },
      {
        "name": "map",
        "comment": " ",
        "type": "(Float -> Float) -> LngLat.LngLat -> LngLat.LngLat"
      }
    ],
    "generated-with-elm-version": "0.18.0"
  }
]
[cgit] Unable to lock slot /tmp/cgit/c0200000.lock: Permission denied (13)