Skip to content

Commit

Permalink
Fix misspelled variable
Browse files Browse the repository at this point in the history
  • Loading branch information
manisandro committed Jul 10, 2024
1 parent 459034e commit b397e16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/VectorLayerUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const VectorLayerUtils = {
if (!feature.geometry) {
return feature;
} else if (feature.geometry.type === "MultiPolygon") {
return feature.geometry.coodinates.map(part => {
return feature.geometry.coordinates.map(part => {
return VectorLayerUtils.simplifyFeature({
...feature,
geometry: {type: "Polygon", coordinates: part}
Expand Down

0 comments on commit b397e16

Please sign in to comment.