Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
msbarry committed Dec 1, 2024
1 parent 6a2460f commit 70549a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private void accept(int zoom, Geometry geom, Map<String, Object> attrs, FeatureC
if (pipeline != null) {
geom = pipeline.apply(geom);
} else if (!(geom instanceof Puntal)) {
GeometryPipeline.defaultSimplify(feature).apply(zoom).apply(geom);
geom = GeometryPipeline.defaultSimplify(feature).apply(zoom).apply(geom);
}

renderGeometry(zoom, geom, attrs, feature);
Expand Down

0 comments on commit 70549a0

Please sign in to comment.