Skip to content

Commit 536eec9

Browse files
committed
lint fix xml to geojson script
1 parent 0d396f0 commit 536eec9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/port/xml2geo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ function xml2geo() {
6767

6868
let vertices = region.getElementsByTagName('Vertex');
6969
let coordinates = [];
70-
let minX = 99e99, maxX = 0, minY = 99e99, maxY = 0;
70+
let minX = 99e99; let maxX = 0; let minY = 99e99; let maxY = 0;
7171

7272
for (let vertex of vertices) {
7373
let x = parseFloat(vertex.getAttribute('X'));

0 commit comments

Comments
 (0)