@mapbox/mapbox-gl-style-spec 14.13.0 → 14.14.0-alpha.a4a566d51

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.d.ts CHANGED
@@ -1194,6 +1194,21 @@ type BuildingLayerSpecification = {
1194
1194
  "filter"?: FilterSpecification;
1195
1195
  "layout"?: {
1196
1196
  "visibility"?: "visible" | "none" | ExpressionSpecification;
1197
+ /**
1198
+ * @experimental This property is experimental and subject to change in future versions.
1199
+ */
1200
+ "building-facade"?: DataDrivenPropertyValueSpecification<boolean>;
1201
+ /**
1202
+ * @experimental This property is experimental and subject to change in future versions.
1203
+ */
1204
+ "building-facade-floors"?: DataDrivenPropertyValueSpecification<number>;
1205
+ /**
1206
+ * @experimental This property is experimental and subject to change in future versions.
1207
+ */
1208
+ "building-facade-window"?: DataDrivenPropertyValueSpecification<[
1209
+ number,
1210
+ number
1211
+ ]>;
1197
1212
  /**
1198
1213
  * @experimental This property is experimental and subject to change in future versions.
1199
1214
  */
@@ -1218,8 +1233,8 @@ type BuildingLayerSpecification = {
1218
1233
  /**
1219
1234
  * @experimental This property is experimental and subject to change in future versions.
1220
1235
  */
1221
- "building-ambient-occlusion-wall-intensity"?: PropertyValueSpecification<number>;
1222
- "building-ambient-occlusion-wall-intensity-transition"?: TransitionSpecification;
1236
+ "building-ambient-occlusion-intensity"?: ExpressionSpecification;
1237
+ "building-ambient-occlusion-intensity-transition"?: TransitionSpecification;
1223
1238
  /**
1224
1239
  * @experimental This property is experimental and subject to change in future versions.
1225
1240
  */
@@ -1253,6 +1268,15 @@ type BuildingLayerSpecification = {
1253
1268
  * @experimental This property is experimental and subject to change in future versions.
1254
1269
  */
1255
1270
  "building-emissive-strength"?: DataDrivenPropertyValueSpecification<number>;
1271
+ /**
1272
+ * @experimental This property is experimental and subject to change in future versions.
1273
+ */
1274
+ "building-facade-emissive-chance"?: PropertyValueSpecification<number>;
1275
+ /**
1276
+ * @experimental This property is experimental and subject to change in future versions.
1277
+ */
1278
+ "building-ambient-occlusion-window-intensity"?: ExpressionSpecification;
1279
+ "building-cutoff-fade-range"?: ExpressionSpecification;
1256
1280
  };
1257
1281
  };
1258
1282
  type RasterLayerSpecification = {