ol 9.1.1-dev.1712670582165 → 9.1.1-dev.1712825202342
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/VectorImage.d.ts +10 -10
- package/layer/VectorImage.js +5 -5
- package/package.json +1 -1
- package/util.js +1 -1
package/layer/VectorImage.d.ts
CHANGED
|
@@ -68,11 +68,11 @@ export type Options<VectorSourceType extends import("../source/Vector.js").defau
|
|
|
68
68
|
*/
|
|
69
69
|
map?: import("../Map.js").default | undefined;
|
|
70
70
|
/**
|
|
71
|
-
* Declutter images and text. Any truthy value will enable
|
|
72
|
-
* decluttering.
|
|
73
|
-
*
|
|
74
|
-
*
|
|
75
|
-
*
|
|
71
|
+
* Declutter images and text on this layer. Any truthy value will enable
|
|
72
|
+
* decluttering. The priority is defined by the `zIndex` of the style and the render order of features. Higher z-index means higher
|
|
73
|
+
* priority. Within the same z-index, a feature rendered before another has higher priority. Items will
|
|
74
|
+
* not be decluttered against or together with items on other layers with the same `declutter` value. If
|
|
75
|
+
* that is needed, use {@link import ("../layer/Vector.js").default} instead.
|
|
76
76
|
*/
|
|
77
77
|
declutter?: string | number | boolean | undefined;
|
|
78
78
|
/**
|
|
@@ -129,11 +129,11 @@ export type Options<VectorSourceType extends import("../source/Vector.js").defau
|
|
|
129
129
|
* this layer in its layers collection, and the layer will be rendered on top. This is useful for
|
|
130
130
|
* temporary layers. The standard way to add a layer to a map and have it managed by the map is to
|
|
131
131
|
* use [map.addLayer()]{@link import("../Map.js").default#addLayer}.
|
|
132
|
-
* @property {boolean|string|number} [declutter=false] Declutter images and text. Any truthy value will enable
|
|
133
|
-
* decluttering.
|
|
134
|
-
*
|
|
135
|
-
*
|
|
136
|
-
*
|
|
132
|
+
* @property {boolean|string|number} [declutter=false] Declutter images and text on this layer. Any truthy value will enable
|
|
133
|
+
* decluttering. The priority is defined by the `zIndex` of the style and the render order of features. Higher z-index means higher
|
|
134
|
+
* priority. Within the same z-index, a feature rendered before another has higher priority. Items will
|
|
135
|
+
* not be decluttered against or together with items on other layers with the same `declutter` value. If
|
|
136
|
+
* that is needed, use {@link import("../layer/Vector.js").default} instead.
|
|
137
137
|
* @property {import("../style/Style.js").StyleLike|import("../style/flat.js").FlatStyleLike|null} [style] Layer style. When set to `null`, only
|
|
138
138
|
* features that have their own style will be rendered. See {@link module:ol/style/Style~Style} for the default style
|
|
139
139
|
* which will be used if this is not set.
|
package/layer/VectorImage.js
CHANGED
|
@@ -35,11 +35,11 @@ import CanvasVectorImageLayerRenderer from '../renderer/canvas/VectorImageLayer.
|
|
|
35
35
|
* this layer in its layers collection, and the layer will be rendered on top. This is useful for
|
|
36
36
|
* temporary layers. The standard way to add a layer to a map and have it managed by the map is to
|
|
37
37
|
* use [map.addLayer()]{@link import("../Map.js").default#addLayer}.
|
|
38
|
-
* @property {boolean|string|number} [declutter=false] Declutter images and text. Any truthy value will enable
|
|
39
|
-
* decluttering.
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
38
|
+
* @property {boolean|string|number} [declutter=false] Declutter images and text on this layer. Any truthy value will enable
|
|
39
|
+
* decluttering. The priority is defined by the `zIndex` of the style and the render order of features. Higher z-index means higher
|
|
40
|
+
* priority. Within the same z-index, a feature rendered before another has higher priority. Items will
|
|
41
|
+
* not be decluttered against or together with items on other layers with the same `declutter` value. If
|
|
42
|
+
* that is needed, use {@link import("../layer/Vector.js").default} instead.
|
|
43
43
|
* @property {import("../style/Style.js").StyleLike|import("../style/flat.js").FlatStyleLike|null} [style] Layer style. When set to `null`, only
|
|
44
44
|
* features that have their own style will be rendered. See {@link module:ol/style/Style~Style} for the default style
|
|
45
45
|
* which will be used if this is not set.
|
package/package.json
CHANGED
package/util.js
CHANGED