We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a235111 commit cd2f763Copy full SHA for cd2f763
src/main.rs
@@ -656,7 +656,10 @@ fn process_event(event: &Event, mut state: &mut State) -> Step {
656
state.gmlcoll.push(Geometry::new(1));
657
state.gmlcoll.last_mut().unwrap().rings.push(Vec::new());
658
},
659
- "gml:LineString" => state.gmlcoll.push(Geometry::new(2)),
+ "gml:LineString" => {
660
+ state.gmlcoll.push(Geometry::new(2));
661
+ state.gmlcoll.last_mut().unwrap().rings.push(Vec::new());
662
+ },
663
"gml:Polygon" => state.gmlcoll.push(Geometry::new(3)),
664
"gml:MultiPolygon" => (),
665
"gml:polygonMember" => (),
0 commit comments