@mapbox/mapbox-gl-style-spec 13.20.1 → 13.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/index.cjs +63 -28
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +63 -28
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/reference/v8.json +63 -28
package/dist/index.es.js
CHANGED
|
@@ -615,7 +615,9 @@ var layer = {
|
|
|
615
615
|
doc: "A spherical dome around the map that is always rendered behind all other layers.",
|
|
616
616
|
"sdk-support": {
|
|
617
617
|
"basic functionality": {
|
|
618
|
-
js: "2.0.0"
|
|
618
|
+
js: "2.0.0",
|
|
619
|
+
ios: "10.0.0",
|
|
620
|
+
android: "10.0.0"
|
|
619
621
|
}
|
|
620
622
|
}
|
|
621
623
|
}
|
|
@@ -711,7 +713,9 @@ var layout_sky = {
|
|
|
711
713
|
doc: "Whether this layer is displayed.",
|
|
712
714
|
"sdk-support": {
|
|
713
715
|
"basic functionality": {
|
|
714
|
-
js: "2.0.0"
|
|
716
|
+
js: "2.0.0",
|
|
717
|
+
ios: "10.0.0",
|
|
718
|
+
android: "10.0.0"
|
|
715
719
|
}
|
|
716
720
|
},
|
|
717
721
|
"property-type": "constant"
|
|
@@ -1806,7 +1810,12 @@ var layout_symbol = {
|
|
|
1806
1810
|
units: "ems",
|
|
1807
1811
|
doc: "The maximum line width for text wrapping.",
|
|
1808
1812
|
requires: [
|
|
1809
|
-
"text-field"
|
|
1813
|
+
"text-field",
|
|
1814
|
+
{
|
|
1815
|
+
"symbol-placement": [
|
|
1816
|
+
"point"
|
|
1817
|
+
]
|
|
1818
|
+
}
|
|
1810
1819
|
],
|
|
1811
1820
|
"sdk-support": {
|
|
1812
1821
|
"basic functionality": {
|
|
@@ -2125,20 +2134,15 @@ var layout_symbol = {
|
|
|
2125
2134
|
value: "enum",
|
|
2126
2135
|
values: {
|
|
2127
2136
|
horizontal: {
|
|
2128
|
-
doc: "If a text's language supports horizontal writing mode, symbols
|
|
2137
|
+
doc: "If a text's language supports horizontal writing mode, symbols would be laid out horizontally."
|
|
2129
2138
|
},
|
|
2130
2139
|
vertical: {
|
|
2131
|
-
doc: "If a text's language supports vertical writing mode, symbols
|
|
2140
|
+
doc: "If a text's language supports vertical writing mode, symbols would be laid out vertically."
|
|
2132
2141
|
}
|
|
2133
2142
|
},
|
|
2134
|
-
doc: "The property allows control over a symbol's orientation. Note that the property values act as a hint, so that a symbol whose language doesn’t support the provided orientation will be laid out in its natural orientation. Example: English point symbol will be rendered horizontally even if array value contains single 'vertical' enum value.
|
|
2143
|
+
doc: "The property allows control over a symbol's orientation. Note that the property values act as a hint, so that a symbol whose language doesn’t support the provided orientation will be laid out in its natural orientation. Example: English point symbol will be rendered horizontally even if array value contains single 'vertical' enum value. For symbol with point placement, the order of elements in an array define priority order for the placement of an orientation variant. For symbol with line placement, the default text writing mode is either ['horizontal', 'vertical'] or ['vertical', 'horizontal'], the order doesn't affect the placement.",
|
|
2135
2144
|
requires: [
|
|
2136
|
-
"text-field"
|
|
2137
|
-
{
|
|
2138
|
-
"symbol-placement": [
|
|
2139
|
-
"point"
|
|
2140
|
-
]
|
|
2141
|
-
}
|
|
2145
|
+
"text-field"
|
|
2142
2146
|
],
|
|
2143
2147
|
"sdk-support": {
|
|
2144
2148
|
"basic functionality": {
|
|
@@ -2616,7 +2620,7 @@ var expression_name = {
|
|
|
2616
2620
|
}
|
|
2617
2621
|
},
|
|
2618
2622
|
"in": {
|
|
2619
|
-
doc: "Determines whether an item exists in an array or a substring exists in a string.",
|
|
2623
|
+
doc: "Determines whether an item exists in an array or a substring exists in a string. In the specific case when the second and third arguments are string literals, you must wrap at least one of them in a [`literal`](#types-literal) expression to hint correct interpretation to the [type system](#type-system).",
|
|
2620
2624
|
group: "Lookup",
|
|
2621
2625
|
"sdk-support": {
|
|
2622
2626
|
"basic functionality": {
|
|
@@ -2884,7 +2888,10 @@ var expression_name = {
|
|
|
2884
2888
|
group: "Types",
|
|
2885
2889
|
"sdk-support": {
|
|
2886
2890
|
"basic functionality": {
|
|
2887
|
-
js: "0.54.0"
|
|
2891
|
+
js: "0.54.0",
|
|
2892
|
+
android: "8.4.0",
|
|
2893
|
+
ios: "5.4.0",
|
|
2894
|
+
macos: "0.15.0"
|
|
2888
2895
|
}
|
|
2889
2896
|
}
|
|
2890
2897
|
},
|
|
@@ -3030,7 +3037,7 @@ var expression_name = {
|
|
|
3030
3037
|
}
|
|
3031
3038
|
},
|
|
3032
3039
|
"geometry-type": {
|
|
3033
|
-
doc: "Gets the feature's geometry type: `Point`, `MultiPoint`, `LineString`, `MultiLineString`, `Polygon`, `MultiPolygon`.",
|
|
3040
|
+
doc: "Gets the feature's geometry type: `Point`, `MultiPoint`, `LineString`, `MultiLineString`, `Polygon`, `MultiPolygon`. `Multi*` feature types are only returned in GeoJSON sources. When working with vector tile sources, use the singular forms.",
|
|
3034
3041
|
group: "Feature data",
|
|
3035
3042
|
"sdk-support": {
|
|
3036
3043
|
"basic functionality": {
|
|
@@ -3094,7 +3101,9 @@ var expression_name = {
|
|
|
3094
3101
|
group: "sky",
|
|
3095
3102
|
"sdk-support": {
|
|
3096
3103
|
"basic functionality": {
|
|
3097
|
-
js: "2.0.0"
|
|
3104
|
+
js: "2.0.0",
|
|
3105
|
+
ios: "10.0.0",
|
|
3106
|
+
android: "10.0.0"
|
|
3098
3107
|
}
|
|
3099
3108
|
}
|
|
3100
3109
|
},
|
|
@@ -3103,7 +3112,10 @@ var expression_name = {
|
|
|
3103
3112
|
group: "Feature data",
|
|
3104
3113
|
"sdk-support": {
|
|
3105
3114
|
"basic functionality": {
|
|
3106
|
-
js: "0.53.0"
|
|
3115
|
+
js: "0.53.0",
|
|
3116
|
+
android: "8.4.0",
|
|
3117
|
+
ios: "5.5.0",
|
|
3118
|
+
macos: "0.15.0"
|
|
3107
3119
|
}
|
|
3108
3120
|
}
|
|
3109
3121
|
},
|
|
@@ -3782,7 +3794,9 @@ var terrain = {
|
|
|
3782
3794
|
required: true,
|
|
3783
3795
|
"sdk-support": {
|
|
3784
3796
|
"basic functionality": {
|
|
3785
|
-
js: "2.0.0"
|
|
3797
|
+
js: "2.0.0",
|
|
3798
|
+
ios: "10.0.0",
|
|
3799
|
+
android: "10.0.0"
|
|
3786
3800
|
}
|
|
3787
3801
|
}
|
|
3788
3802
|
},
|
|
@@ -3802,7 +3816,9 @@ var terrain = {
|
|
|
3802
3816
|
doc: "Exaggerates the elevation of the terrain by multiplying the data from the DEM with this value.",
|
|
3803
3817
|
"sdk-support": {
|
|
3804
3818
|
"basic functionality": {
|
|
3805
|
-
js: "2.0.0"
|
|
3819
|
+
js: "2.0.0",
|
|
3820
|
+
ios: "10.0.0",
|
|
3821
|
+
android: "10.0.0"
|
|
3806
3822
|
}
|
|
3807
3823
|
}
|
|
3808
3824
|
}
|
|
@@ -5725,7 +5741,9 @@ var paint_sky = {
|
|
|
5725
5741
|
doc: "The type of the sky",
|
|
5726
5742
|
"sdk-support": {
|
|
5727
5743
|
"basic functionality": {
|
|
5728
|
-
js: "2.0.0"
|
|
5744
|
+
js: "2.0.0",
|
|
5745
|
+
ios: "10.0.0",
|
|
5746
|
+
android: "10.0.0"
|
|
5729
5747
|
}
|
|
5730
5748
|
},
|
|
5731
5749
|
expression: {
|
|
@@ -5753,7 +5771,9 @@ var paint_sky = {
|
|
|
5753
5771
|
doc: "Position of the sun center [a azimuthal angle, p polar angle]. The azimuthal angle indicates the position of the sun relative to 0° north, where degrees proceed clockwise. The polar angle indicates the height of the sun, where 0° is directly above, at zenith, and 90° at the horizon. When this property is ommitted, the sun center is directly inherited from the light position.",
|
|
5754
5772
|
"sdk-support": {
|
|
5755
5773
|
"basic functionality": {
|
|
5756
|
-
js: "2.0.0"
|
|
5774
|
+
js: "2.0.0",
|
|
5775
|
+
ios: "10.0.0",
|
|
5776
|
+
android: "10.0.0"
|
|
5757
5777
|
}
|
|
5758
5778
|
},
|
|
5759
5779
|
requires: [
|
|
@@ -5783,7 +5803,9 @@ var paint_sky = {
|
|
|
5783
5803
|
doc: "Intensity of the sun as a light source in the atmosphere (on a scale from 0 to a 100). Setting higher values will brighten up the sky.",
|
|
5784
5804
|
"sdk-support": {
|
|
5785
5805
|
"basic functionality": {
|
|
5786
|
-
js: "2.0.0"
|
|
5806
|
+
js: "2.0.0",
|
|
5807
|
+
ios: "10.0.0",
|
|
5808
|
+
android: "10.0.0"
|
|
5787
5809
|
}
|
|
5788
5810
|
},
|
|
5789
5811
|
"property-type": "data-constant"
|
|
@@ -5814,7 +5836,9 @@ var paint_sky = {
|
|
|
5814
5836
|
doc: "Position of the gradient center [a azimuthal angle, p polar angle]. The azimuthal angle indicates the position of the gradient center relative to 0° north, where degrees proceed clockwise. The polar angle indicates the height of the gradient center, where 0° is directly above, at zenith, and 90° at the horizon.",
|
|
5815
5837
|
"sdk-support": {
|
|
5816
5838
|
"basic functionality": {
|
|
5817
|
-
js: "2.0.0"
|
|
5839
|
+
js: "2.0.0",
|
|
5840
|
+
ios: "10.0.0",
|
|
5841
|
+
android: "10.0.0"
|
|
5818
5842
|
}
|
|
5819
5843
|
},
|
|
5820
5844
|
expression: {
|
|
@@ -5839,7 +5863,9 @@ var paint_sky = {
|
|
|
5839
5863
|
doc: "The angular distance (measured in degrees) from `sky-gradient-center` up to which the gradient extends. A value of 180 causes the gradient to wrap around to the opposite direction from `sky-gradient-center`.",
|
|
5840
5864
|
"sdk-support": {
|
|
5841
5865
|
"basic functionality": {
|
|
5842
|
-
js: "2.0.0"
|
|
5866
|
+
js: "2.0.0",
|
|
5867
|
+
ios: "10.0.0",
|
|
5868
|
+
android: "10.0.0"
|
|
5843
5869
|
}
|
|
5844
5870
|
},
|
|
5845
5871
|
expression: {
|
|
@@ -5874,7 +5900,9 @@ var paint_sky = {
|
|
|
5874
5900
|
],
|
|
5875
5901
|
"sdk-support": {
|
|
5876
5902
|
"basic functionality": {
|
|
5877
|
-
js: "2.0.0"
|
|
5903
|
+
js: "2.0.0",
|
|
5904
|
+
ios: "10.0.0",
|
|
5905
|
+
android: "10.0.0"
|
|
5878
5906
|
},
|
|
5879
5907
|
"data-driven styling": {
|
|
5880
5908
|
}
|
|
@@ -5899,7 +5927,9 @@ var paint_sky = {
|
|
|
5899
5927
|
],
|
|
5900
5928
|
"sdk-support": {
|
|
5901
5929
|
"basic functionality": {
|
|
5902
|
-
js: "2.0.0"
|
|
5930
|
+
js: "2.0.0",
|
|
5931
|
+
ios: "10.0.0",
|
|
5932
|
+
android: "10.0.0"
|
|
5903
5933
|
}
|
|
5904
5934
|
},
|
|
5905
5935
|
"property-type": "data-constant"
|
|
@@ -5916,7 +5946,9 @@ var paint_sky = {
|
|
|
5916
5946
|
],
|
|
5917
5947
|
"sdk-support": {
|
|
5918
5948
|
"basic functionality": {
|
|
5919
|
-
js: "2.0.0"
|
|
5949
|
+
js: "2.0.0",
|
|
5950
|
+
ios: "10.0.0",
|
|
5951
|
+
android: "10.0.0"
|
|
5920
5952
|
}
|
|
5921
5953
|
},
|
|
5922
5954
|
"property-type": "data-constant"
|
|
@@ -5930,7 +5962,9 @@ var paint_sky = {
|
|
|
5930
5962
|
transition: true,
|
|
5931
5963
|
"sdk-support": {
|
|
5932
5964
|
"basic functionality": {
|
|
5933
|
-
js: "2.0.0"
|
|
5965
|
+
js: "2.0.0",
|
|
5966
|
+
ios: "10.0.0",
|
|
5967
|
+
android: "10.0.0"
|
|
5934
5968
|
}
|
|
5935
5969
|
},
|
|
5936
5970
|
expression: {
|
|
@@ -6299,6 +6333,7 @@ var v8 = {
|
|
|
6299
6333
|
"sdk-support": {
|
|
6300
6334
|
"basic functionality": {
|
|
6301
6335
|
js: "0.50.0",
|
|
6336
|
+
android: "7.0.0",
|
|
6302
6337
|
ios: "4.7.0",
|
|
6303
6338
|
macos: "0.13.0"
|
|
6304
6339
|
}
|