Skip to content

Commit

Permalink
fix(export): GPX export integrates MultiLineString geometry (#660)
Browse files Browse the repository at this point in the history
* add params to clusterStyle

* fix(export): GPX export integrates MultiLineString geometry

Co-authored-by: drekss <bovictor123>
  • Loading branch information
drekss authored Jun 8, 2020
1 parent f95d7d4 commit 7a26ddc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ export class ExportService {
if (format === 'GPX') {
const pointOrLine = olFeatures.find(olFeature => {
return (
['Point', 'LineString'].indexOf(olFeature.getGeometry().getType()) >=
['Point', 'LineString', 'MultiLineString'].indexOf(olFeature.getGeometry().getType()) >=
0
);
});
Expand Down

0 comments on commit 7a26ddc

Please sign in to comment.