From 76a008dbcc9bce4abf5311b3c68d1d64719d17e8 Mon Sep 17 00:00:00 2001 From: "gerome.perrin" Date: Mon, 2 Feb 2026 13:53:21 +0100 Subject: [PATCH] [improve] enable the 'filter with map scale' button --- src/components/itinevert/ItinevertResultView.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/itinevert/ItinevertResultView.vue b/src/components/itinevert/ItinevertResultView.vue index 4377e3ce6..58e5a8a80 100644 --- a/src/components/itinevert/ItinevertResultView.vue +++ b/src/components/itinevert/ItinevertResultView.vue @@ -107,6 +107,7 @@ :highlighted-document="highlightedDocument" :open-in-new-tab="true" @highlight-document="highlightedDocument = arguments[0]" + show-filter-control show-center-on-geolocation show-recenter-on /> @@ -311,7 +312,7 @@ export default { }; let query = itinevertService.enhanceQuery(this.baseQuery, newQuery); - if (this.isochroneBbox !== '') { + if (this.isochroneBbox !== '' && !query.bbox) { query.bbox = this.isochroneBbox; } this.lastQuery = query;