ol 9.2.5-dev.1721242587562 → 9.2.5-dev.1721252461814
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/ol.js +1 -1
- package/dist/ol.js.map +1 -1
- package/layer/VectorTile.d.ts +2 -2
- package/layer/VectorTile.js +2 -2
- package/package.json +1 -1
- package/util.js +1 -1
package/layer/VectorTile.d.ts
CHANGED
|
@@ -158,7 +158,7 @@ export type Options<VectorTileSourceType extends import("../source/VectorTile.js
|
|
|
158
158
|
* @typedef {T extends import("../source/VectorTile.js").default<infer U extends import("../Feature.js").FeatureLike> ? U : never} ExtractedFeatureType
|
|
159
159
|
*/
|
|
160
160
|
/**
|
|
161
|
-
* @template {import("../source/VectorTile.js").default<FeatureType>} [VectorTileSourceType=import("../source/VectorTile.js").default
|
|
161
|
+
* @template {import("../source/VectorTile.js").default<FeatureType>} [VectorTileSourceType=import("../source/VectorTile.js").default<*>]
|
|
162
162
|
* @template {import("../Feature").FeatureLike} [FeatureType=ExtractedFeatureType<VectorTileSourceType>]
|
|
163
163
|
* @typedef {Object} Options
|
|
164
164
|
* @property {string} [className='ol-layer'] A CSS class name to set to the layer element.
|
|
@@ -229,7 +229,7 @@ export type Options<VectorTileSourceType extends import("../source/VectorTile.js
|
|
|
229
229
|
* property on the layer object; for example, setting `title: 'My Title'` in the
|
|
230
230
|
* options means that `title` is observable, and has get/set accessors.
|
|
231
231
|
*
|
|
232
|
-
* @template {import("../source/VectorTile.js").default<FeatureType>} [VectorTileSourceType=import("../source/VectorTile.js").default
|
|
232
|
+
* @template {import("../source/VectorTile.js").default<FeatureType>} [VectorTileSourceType=import("../source/VectorTile.js").default<*>]
|
|
233
233
|
* @template {import("../Feature.js").FeatureLike} [FeatureType=ExtractedFeatureType<VectorTileSourceType>]
|
|
234
234
|
* @extends {BaseVectorLayer<FeatureType, VectorTileSourceType, CanvasVectorTileLayerRenderer>}
|
|
235
235
|
* @api
|
package/layer/VectorTile.js
CHANGED
|
@@ -26,7 +26,7 @@ import {assert} from '../asserts.js';
|
|
|
26
26
|
*/
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
* @template {import("../source/VectorTile.js").default<FeatureType>} [VectorTileSourceType=import("../source/VectorTile.js").default
|
|
29
|
+
* @template {import("../source/VectorTile.js").default<FeatureType>} [VectorTileSourceType=import("../source/VectorTile.js").default<*>]
|
|
30
30
|
* @template {import("../Feature").FeatureLike} [FeatureType=ExtractedFeatureType<VectorTileSourceType>]
|
|
31
31
|
* @typedef {Object} Options
|
|
32
32
|
* @property {string} [className='ol-layer'] A CSS class name to set to the layer element.
|
|
@@ -98,7 +98,7 @@ import {assert} from '../asserts.js';
|
|
|
98
98
|
* property on the layer object; for example, setting `title: 'My Title'` in the
|
|
99
99
|
* options means that `title` is observable, and has get/set accessors.
|
|
100
100
|
*
|
|
101
|
-
* @template {import("../source/VectorTile.js").default<FeatureType>} [VectorTileSourceType=import("../source/VectorTile.js").default
|
|
101
|
+
* @template {import("../source/VectorTile.js").default<FeatureType>} [VectorTileSourceType=import("../source/VectorTile.js").default<*>]
|
|
102
102
|
* @template {import("../Feature.js").FeatureLike} [FeatureType=ExtractedFeatureType<VectorTileSourceType>]
|
|
103
103
|
* @extends {BaseVectorLayer<FeatureType, VectorTileSourceType, CanvasVectorTileLayerRenderer>}
|
|
104
104
|
* @api
|
package/package.json
CHANGED
package/util.js
CHANGED