Skip to content

Commit

Permalink
Fix setLoopMinLength
Browse files Browse the repository at this point in the history
  • Loading branch information
wipfli committed Nov 8, 2024
1 parent 2fa8dc5 commit d23e16b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public static List<VectorTile.Feature> mergeLineStrings(List<VectorTile.Feature>
} else {
LoopLineMerger merger = new LoopLineMerger()
.setMinLength(lengthLimit)
.setLoopMinLength(lengthLimit);
.setLoopMinLength(loopMinLength);
for (VectorTile.Feature feature : groupedFeatures) {
try {
merger.add(feature.geometry().decode());
Expand Down

0 comments on commit d23e16b

Please sign in to comment.