From 58c356c5b7d085d46545b586eb74c40a7de0f02d Mon Sep 17 00:00:00 2001 From: Azgaar Date: Fri, 12 Nov 2021 23:00:21 +0300 Subject: [PATCH] burgs overview - intert lock state --- modules/export.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}; });