@mapbox/mapbox-gl-style-spec 14.29.0-rc.1 → 14.29.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/dist/index.cjs +23 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +26 -0
- package/dist/index.es.js +23 -0
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/reference/v8.json +23 -0
- package/types.ts +6 -1
package/package.json
CHANGED
package/reference/v8.json
CHANGED
|
@@ -9074,6 +9074,29 @@
|
|
|
9074
9074
|
]
|
|
9075
9075
|
},
|
|
9076
9076
|
"property-type": "data-constant"
|
|
9077
|
+
},
|
|
9078
|
+
"line-cutout-depth": {
|
|
9079
|
+
"type": "number",
|
|
9080
|
+
"default": 0,
|
|
9081
|
+
"minimum": 0,
|
|
9082
|
+
"units": "meters",
|
|
9083
|
+
"doc": "Depth offset along the camera, in meters. When set to a non-zero value, applied cutout opacity is 0.",
|
|
9084
|
+
"experimental": true,
|
|
9085
|
+
"private": true,
|
|
9086
|
+
"transition": true,
|
|
9087
|
+
"sdk-support": {
|
|
9088
|
+
"basic functionality": {
|
|
9089
|
+
"android": "11.29.0",
|
|
9090
|
+
"ios": "11.29.0"
|
|
9091
|
+
}
|
|
9092
|
+
},
|
|
9093
|
+
"expression": {
|
|
9094
|
+
"interpolated": true,
|
|
9095
|
+
"parameters": [
|
|
9096
|
+
"zoom"
|
|
9097
|
+
]
|
|
9098
|
+
},
|
|
9099
|
+
"property-type": "data-constant"
|
|
9077
9100
|
}
|
|
9078
9101
|
},
|
|
9079
9102
|
"paint_circle": {
|
package/types.ts
CHANGED
|
@@ -771,7 +771,12 @@ export type LineLayerSpecification = {
|
|
|
771
771
|
/**
|
|
772
772
|
* @experimental This property is experimental and subject to change in future versions.
|
|
773
773
|
*/
|
|
774
|
-
"line-blend-additive-clamp"?: PropertyValueSpecification<number
|
|
774
|
+
"line-blend-additive-clamp"?: PropertyValueSpecification<number>,
|
|
775
|
+
/**
|
|
776
|
+
* @experimental This property is experimental and subject to change in future versions.
|
|
777
|
+
*/
|
|
778
|
+
"line-cutout-depth"?: PropertyValueSpecification<number>,
|
|
779
|
+
"line-cutout-depth-transition"?: TransitionSpecification
|
|
775
780
|
},
|
|
776
781
|
"appearances"?: Array<AppearanceSpecification>
|
|
777
782
|
};
|