ol 9.1.1-dev.1715778879108 → 9.1.1-dev.1715779213254
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 +2 -2
- package/dist/ol.js.map +1 -1
- package/layer/BaseVector.d.ts +3 -3
- package/layer/BaseVector.d.ts.map +1 -1
- package/layer/BaseVector.js +5 -4
- package/package.json +1 -1
- package/util.js +1 -1
package/layer/BaseVector.d.ts
CHANGED
|
@@ -134,7 +134,7 @@ declare class BaseVectorLayer<VectorSourceType extends import("../source/VectorT
|
|
|
134
134
|
private renderBuffer_;
|
|
135
135
|
/**
|
|
136
136
|
* User provided style.
|
|
137
|
-
* @type {import("../style/Style.js").StyleLike}
|
|
137
|
+
* @type {import("../style/Style.js").StyleLike|import("../style/flat.js").FlatStyleLike}
|
|
138
138
|
* @private
|
|
139
139
|
*/
|
|
140
140
|
private style_;
|
|
@@ -166,10 +166,10 @@ declare class BaseVectorLayer<VectorSourceType extends import("../source/VectorT
|
|
|
166
166
|
/**
|
|
167
167
|
* Get the style for features. This returns whatever was passed to the `style`
|
|
168
168
|
* option at construction or to the `setStyle` method.
|
|
169
|
-
* @return {import("../style/Style.js").StyleLike|null|undefined} Layer style.
|
|
169
|
+
* @return {import("../style/Style.js").StyleLike|import("../style/flat.js").FlatStyleLike|null|undefined} Layer style.
|
|
170
170
|
* @api
|
|
171
171
|
*/
|
|
172
|
-
getStyle(): import("../style/Style.js").StyleLike | null | undefined;
|
|
172
|
+
getStyle(): import("../style/Style.js").StyleLike | import("../style/flat.js").FlatStyleLike | null | undefined;
|
|
173
173
|
/**
|
|
174
174
|
* Get the style function.
|
|
175
175
|
* @return {import("../style/Style.js").StyleFunction|undefined} Layer style function.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BaseVector.d.ts","sourceRoot":"","sources":["BaseVector.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwEA;;;;;;;;;;;GAWG;AACH;IACE;;OAEG;IACH,6DAyDC;IA9CC;;;OAGG;IACH,mBAA2E;IAE3E;;;OAGG;IACH,sBACiE;IAEjE;;;;OAIG;IACH,eAAkB;IAElB;;;;OAIG;IACH,uBAA+B;IAI/B;;;OAGG;IACH,8BAGW;IAEX;;;OAGG;IACH,gCAGW;IA4Bb;;OAEG;IACH,mBAFY,MAAM,GAAC,SAAS,CAI3B;IAED;;;OAGG;IACH,yBAHqB,OAAO,eAAe,EAAE,OAAO,QAAE,OAAO,eAAe,EAAE,OAAO,KAAG,MAAM,GAAC,IAAI,GAAC,SAAS,CAO5G;IAED;;;;;OAKG;IACH,YAHY,OAAO,mBAAmB,EAAE,SAAS,GAAC,IAAI,GAAC,SAAS,
|
|
1
|
+
{"version":3,"file":"BaseVector.d.ts","sourceRoot":"","sources":["BaseVector.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAwEA;;;;;;;;;;;GAWG;AACH;IACE;;OAEG;IACH,6DAyDC;IA9CC;;;OAGG;IACH,mBAA2E;IAE3E;;;OAGG;IACH,sBACiE;IAEjE;;;;OAIG;IACH,eAAkB;IAElB;;;;OAIG;IACH,uBAA+B;IAI/B;;;OAGG;IACH,8BAGW;IAEX;;;OAGG;IACH,gCAGW;IA4Bb;;OAEG;IACH,mBAFY,MAAM,GAAC,SAAS,CAI3B;IAED;;;OAGG;IACH,yBAHqB,OAAO,eAAe,EAAE,OAAO,QAAE,OAAO,eAAe,EAAE,OAAO,KAAG,MAAM,GAAC,IAAI,GAAC,SAAS,CAO5G;IAED;;;;;OAKG;IACH,YAHY,OAAO,mBAAmB,EAAE,SAAS,GAAC,OAAO,kBAAkB,EAAE,aAAa,GAAC,IAAI,GAAC,SAAS,CAKxG;IAED;;;;OAIG;IACH,oBAHY,OAAO,mBAAmB,EAAE,aAAa,GAAC,SAAS,CAK9D;IAED;;;OAGG;IACH,2BAHY,OAAO,CAKlB;IAED;;;OAGG;IACH,6BAHY,OAAO,CAKlB;IAeD;;;OAGG;IACH,4BAHW,OAAO,cAAc,EAAE,aAAa,GAAC,IAAI,GAAC,SAAS,QAK7D;IAED;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,4HAMC;CACF;kBA9QiB,YAAY"}
|
package/layer/BaseVector.js
CHANGED
|
@@ -112,7 +112,7 @@ class BaseVectorLayer extends Layer {
|
|
|
112
112
|
|
|
113
113
|
/**
|
|
114
114
|
* User provided style.
|
|
115
|
-
* @type {import("../style/Style.js").StyleLike}
|
|
115
|
+
* @type {import("../style/Style.js").StyleLike|import("../style/flat.js").FlatStyleLike}
|
|
116
116
|
* @private
|
|
117
117
|
*/
|
|
118
118
|
this.style_ = null;
|
|
@@ -190,7 +190,7 @@ class BaseVectorLayer extends Layer {
|
|
|
190
190
|
/**
|
|
191
191
|
* Get the style for features. This returns whatever was passed to the `style`
|
|
192
192
|
* option at construction or to the `setStyle` method.
|
|
193
|
-
* @return {import("../style/Style.js").StyleLike|null|undefined} Layer style.
|
|
193
|
+
* @return {import("../style/Style.js").StyleLike|import("../style/flat.js").FlatStyleLike|null|undefined} Layer style.
|
|
194
194
|
* @api
|
|
195
195
|
*/
|
|
196
196
|
getStyle() {
|
|
@@ -265,9 +265,10 @@ class BaseVectorLayer extends Layer {
|
|
|
265
265
|
* @api
|
|
266
266
|
*/
|
|
267
267
|
setStyle(style) {
|
|
268
|
-
this.style_ =
|
|
268
|
+
this.style_ = style === undefined ? createDefaultStyle : style;
|
|
269
|
+
const styleLike = toStyleLike(style);
|
|
269
270
|
this.styleFunction_ =
|
|
270
|
-
style === null ? undefined : toStyleFunction(
|
|
271
|
+
style === null ? undefined : toStyleFunction(styleLike);
|
|
271
272
|
this.changed();
|
|
272
273
|
}
|
|
273
274
|
}
|
package/package.json
CHANGED
package/util.js
CHANGED