diff --git a/umap/static/umap/js/umap.features.js b/umap/static/umap/js/umap.features.js index a238c10f..2908a7ac 100644 --- a/umap/static/umap/js/umap.features.js +++ b/umap/static/umap/js/umap.features.js @@ -301,6 +301,7 @@ L.U.FeatureMixin = { toGeoJSON: function () { var geojson = this.parentClass.prototype.toGeoJSON.call(this); geojson.properties = this.cloneProperties(); + delete geojson.properties._storage_options; return geojson; },