diff --git a/modules/export.js b/modules/export.js index 439cb297..eb33d531 100644 --- a/modules/export.js +++ b/modules/export.js @@ -445,11 +445,11 @@ function saveGeoJSON_Rivers() { function saveGeoJSON_Markers() { const features = pack.markers.map(marker => { - const {i, type, icon, x, y, size, fill, stroke, size} = marker; + const {i, type, icon, x, y, size, fill, stroke} = marker; const coordinates = getQGIScoordinates(x, y); const id = `marker${i}`; const note = notes.find(note => note.id === id); - const properties = {id, type, icon, ...note, size, fill, stroke, size}; + const properties = {id, type, icon, ...note, size, fill, stroke}; return {type: "Feature", geometry: {type: "Point", coordinates}, properties}; });