ol 10.0.1-dev.1722904056769 → 10.0.1-dev.1723061166717
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/format/GML2.js +1 -1
- package/format/GML3.js +1 -1
- package/package.json +1 -1
- package/util.js +1 -1
package/format/GML2.js
CHANGED
|
@@ -218,7 +218,7 @@ class GML2 extends GMLBase {
|
|
|
218
218
|
const properties = feature.getProperties();
|
|
219
219
|
for (const key in properties) {
|
|
220
220
|
const value = properties[key];
|
|
221
|
-
if (value !== null) {
|
|
221
|
+
if (value !== null && value !== undefined) {
|
|
222
222
|
keys.push(key);
|
|
223
223
|
values.push(value);
|
|
224
224
|
if (
|
package/format/GML3.js
CHANGED
|
@@ -849,7 +849,7 @@ class GML3 extends GMLBase {
|
|
|
849
849
|
const properties = feature.getProperties();
|
|
850
850
|
for (const key in properties) {
|
|
851
851
|
const value = properties[key];
|
|
852
|
-
if (value !== null) {
|
|
852
|
+
if (value !== null && value !== undefined) {
|
|
853
853
|
keys.push(key);
|
|
854
854
|
values.push(value);
|
|
855
855
|
if (
|
package/package.json
CHANGED
package/util.js
CHANGED