ol 9.2.5-dev.1721672404402 → 9.2.5-dev.1721820010521
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/package.json +1 -1
- package/source/Cluster.d.ts +3 -3
- package/source/Cluster.d.ts.map +1 -1
- package/source/Cluster.js +1 -1
- package/util.js +1 -1
package/package.json
CHANGED
package/source/Cluster.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ export type Options<FeatureType extends import("../Feature.js").FeatureLike> = {
|
|
|
31
31
|
* See {@link module :ol/geom/Polygon~Polygon#getInteriorPoint} for a way to get a cluster
|
|
32
32
|
* calculation point for polygons.
|
|
33
33
|
*/
|
|
34
|
-
geometryFunction?: ((arg0: FeatureType) => (Point)) | undefined;
|
|
34
|
+
geometryFunction?: ((arg0: FeatureType) => (Point | null)) | undefined;
|
|
35
35
|
/**
|
|
36
36
|
* Function that takes the cluster's center {@link module :ol/geom/Point~Point} and an array
|
|
37
37
|
* of {@link module :ol/Feature~Feature} included in this cluster. Must return a
|
|
@@ -66,7 +66,7 @@ export type Options<FeatureType extends import("../Feature.js").FeatureLike> = {
|
|
|
66
66
|
* By default no minimum distance is guaranteed. This config can be used to avoid
|
|
67
67
|
* overlapping icons. As a tradoff, the cluster feature's position will no longer be
|
|
68
68
|
* the center of all its features.
|
|
69
|
-
* @property {function(FeatureType):(Point)} [geometryFunction]
|
|
69
|
+
* @property {function(FeatureType):(Point|null)} [geometryFunction]
|
|
70
70
|
* Function that takes a {@link module:ol/Feature~Feature} as argument and returns a
|
|
71
71
|
* {@link module:ol/geom/Point~Point} as cluster calculation point for the feature. When a
|
|
72
72
|
* feature should not be considered for clustering, the function should return
|
|
@@ -142,7 +142,7 @@ declare class Cluster<FeatureType extends import("../Feature.js").FeatureLike> e
|
|
|
142
142
|
* @return {Point} Cluster calculation point.
|
|
143
143
|
* @protected
|
|
144
144
|
*/
|
|
145
|
-
protected geometryFunction: (arg0: FeatureType) => (Point);
|
|
145
|
+
protected geometryFunction: (arg0: FeatureType) => (Point | null);
|
|
146
146
|
/**
|
|
147
147
|
* @type {function(Point, Array<FeatureType>):Feature}
|
|
148
148
|
* @private
|
package/source/Cluster.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Cluster.d.ts","sourceRoot":"","sources":["Cluster.js"],"names":[],"mappings":";oBAmBmD,WAAW,SAAjD,OAAQ,eAAe,EAAE,WAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BAU3B,WAAW,KAAE,CAAC,KAAK,CAAC;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"Cluster.d.ts","sourceRoot":"","sources":["Cluster.js"],"names":[],"mappings":";oBAmBmD,WAAW,SAAjD,OAAQ,eAAe,EAAE,WAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BAU3B,WAAW,KAAE,CAAC,KAAK,GAAC,IAAI,CAAC;;;;;;;;;;;;;;4BAazB,KAAK,QAAE,KAAK,CAAC,WAAW,CAAC,KAAE,OAAO;;;;;;;;;;AAxBzD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AAEH;;;;;;;;;;;;GAYG;AACH,sBAHmD,WAAW,SAAjD,OAAQ,eAAe,EAAE,WAAY;IAIhD;;OAEG;IACH,wDAwEC;IAjEC;;;OAGG;IACH,sBAHU,MAAM,GAAC,SAAS,CAGC;IAE3B;;;OAGG;IACH,oBAHU,MAAM,CAGsD;IAEtE;;;OAGG;IACH,uBAHU,MAAM,CAG2B;IAE3C;;;OAGG;IACH,8BAHU,MAAM,CAGW;IAE3B;;;OAGG;IACH,oBAHU,KAAK,CAAC,OAAO,CAAC,CAGN;IAElB;;;;OAIG;IACH,mDAxFgC,CAAC,KAAK,GAAC,IAAI,CAAC,CAiGzC;IAEH;;;OAGG;IACH,6BAAiD;IAEjD;;;OAGG;IACH,kBAHU,YAAY,CAAC,WAAW,CAAC,GAAC,IAAI,CAGtB;IAElB;;OAEG;IACH,sBAA4C;IAiB9C;;;;OAIG;IACH,eAHY,MAAM,CAKjB;IAED;;;;OAIG;IACH,aAHY,YAAY,CAAC,WAAW,CAAC,GAAC,IAAI,CAKzC;IAgBD;;;;OAIG;IACH,sBAHW,MAAM,QAKhB;IAED;;;;;OAKG;IACH,4BAHW,MAAM,QAKhB;IAED;;;;OAIG;IACH,kBAHY,MAAM,CAKjB;IAED;;;;OAIG;IACH,kBAHW,YAAY,CAAC,WAAW,CAAC,GAAC,IAAI,QAYxC;IAYD;;;;OAIG;IACH,yBAHW,MAAM,eACN,MAAM,QAahB;IAED;;OAEG;IACH,0BAkCC;IAED;;;;;OAKG;IACH,kCALW,KAAK,CAAC,WAAW,CAAC,UAClB,OAAO,cAAc,EAAE,MAAM,GAC5B,OAAO,CA2BlB;CACF;kBAxUiB,kBAAkB;oBADhB,eAAe;yBAEV,aAAa"}
|
package/source/Cluster.js
CHANGED
|
@@ -27,7 +27,7 @@ import {getUid} from '../util.js';
|
|
|
27
27
|
* By default no minimum distance is guaranteed. This config can be used to avoid
|
|
28
28
|
* overlapping icons. As a tradoff, the cluster feature's position will no longer be
|
|
29
29
|
* the center of all its features.
|
|
30
|
-
* @property {function(FeatureType):(Point)} [geometryFunction]
|
|
30
|
+
* @property {function(FeatureType):(Point|null)} [geometryFunction]
|
|
31
31
|
* Function that takes a {@link module:ol/Feature~Feature} as argument and returns a
|
|
32
32
|
* {@link module:ol/geom/Point~Point} as cluster calculation point for the feature. When a
|
|
33
33
|
* feature should not be considered for clustering, the function should return
|
package/util.js
CHANGED