Skip to content

Commit

Permalink
Merge pull request #192 from Geoportail-Luxembourg/GITLAB-44-profile_…
Browse files Browse the repository at this point in the history
…geometry

allow multilinestring
  • Loading branch information
rmichaelis authored Feb 12, 2025
2 parents 6803264 + 4a7b1f0 commit 26ace3d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bundle/components/profile_v3/profile-infos_v3.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const { feature_v3, activePositioning_v3 } = storeToRefs(profilev3Store)
const activateProfile = computed(
() =>
feature_v3.value &&
feature_v3.value.getGeometry()?.getType() === 'LineString'
(feature_v3.value.getGeometry()?.getType() === 'LineString' ||
feature_v3.value.getGeometry()?.getType() === 'MultiLineString')
)
/**
Expand Down

0 comments on commit 26ace3d

Please sign in to comment.