Skip to content

Commit bbeba39

Browse files
add geomertry data after properties for a more readable geo data table display (#37)
1 parent 81f28ac commit bbeba39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/renderer/outputLoader.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export class OutputLoader {
141141
properties[`properties.${key}`] = feature.properties[key];
142142
});
143143
const {geometry: g, properties: p, ...restOfKeys} = feature;
144-
return {...restOfKeys, ...geometry, ...properties};
144+
return {...restOfKeys, ...properties, ...geometry};
145145
});
146146

147147
// make features the first key of the object

0 commit comments

Comments
 (0)