@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/dist/index.d.ts
CHANGED
|
@@ -8115,6 +8115,27 @@ declare const _exports: {
|
|
|
8115
8115
|
};
|
|
8116
8116
|
"property-type": string;
|
|
8117
8117
|
};
|
|
8118
|
+
"line-cutout-depth": {
|
|
8119
|
+
type: string;
|
|
8120
|
+
default: number;
|
|
8121
|
+
minimum: number;
|
|
8122
|
+
units: string;
|
|
8123
|
+
doc: string;
|
|
8124
|
+
experimental: boolean;
|
|
8125
|
+
private: boolean;
|
|
8126
|
+
transition: boolean;
|
|
8127
|
+
"sdk-support": {
|
|
8128
|
+
"basic functionality": {
|
|
8129
|
+
android: string;
|
|
8130
|
+
ios: string;
|
|
8131
|
+
};
|
|
8132
|
+
};
|
|
8133
|
+
expression: {
|
|
8134
|
+
interpolated: boolean;
|
|
8135
|
+
parameters: string[];
|
|
8136
|
+
};
|
|
8137
|
+
"property-type": string;
|
|
8138
|
+
};
|
|
8118
8139
|
};
|
|
8119
8140
|
paint_circle: {
|
|
8120
8141
|
"circle-radius": {
|
|
@@ -11276,6 +11297,11 @@ type LineLayerSpecification = {
|
|
|
11276
11297
|
* @experimental This property is experimental and subject to change in future versions.
|
|
11277
11298
|
*/
|
|
11278
11299
|
"line-blend-additive-clamp"?: PropertyValueSpecification<number>;
|
|
11300
|
+
/**
|
|
11301
|
+
* @experimental This property is experimental and subject to change in future versions.
|
|
11302
|
+
*/
|
|
11303
|
+
"line-cutout-depth"?: PropertyValueSpecification<number>;
|
|
11304
|
+
"line-cutout-depth-transition"?: TransitionSpecification;
|
|
11279
11305
|
};
|
|
11280
11306
|
"appearances"?: Array<AppearanceSpecification>;
|
|
11281
11307
|
};
|
package/dist/index.es.js
CHANGED
|
@@ -8271,6 +8271,29 @@ var paint_line = {
|
|
|
8271
8271
|
]
|
|
8272
8272
|
},
|
|
8273
8273
|
"property-type": "data-constant"
|
|
8274
|
+
},
|
|
8275
|
+
"line-cutout-depth": {
|
|
8276
|
+
type: "number",
|
|
8277
|
+
"default": 0,
|
|
8278
|
+
minimum: 0,
|
|
8279
|
+
units: "meters",
|
|
8280
|
+
doc: "Depth offset along the camera, in meters. When set to a non-zero value, applied cutout opacity is 0.",
|
|
8281
|
+
experimental: true,
|
|
8282
|
+
"private": true,
|
|
8283
|
+
transition: true,
|
|
8284
|
+
"sdk-support": {
|
|
8285
|
+
"basic functionality": {
|
|
8286
|
+
android: "11.29.0",
|
|
8287
|
+
ios: "11.29.0"
|
|
8288
|
+
}
|
|
8289
|
+
},
|
|
8290
|
+
expression: {
|
|
8291
|
+
interpolated: true,
|
|
8292
|
+
parameters: [
|
|
8293
|
+
"zoom"
|
|
8294
|
+
]
|
|
8295
|
+
},
|
|
8296
|
+
"property-type": "data-constant"
|
|
8274
8297
|
}
|
|
8275
8298
|
};
|
|
8276
8299
|
var paint_circle = {
|