From b4e91609d352281b1c2bb88796e35f6ea9e8b1bd Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Thu, 8 Jan 2026 23:38:38 +0000 Subject: [PATCH] Add draggable marker changes --- .../component/location-geocode-header.html | 1 + .../template/component/map-header.html | 45 +++++++++++++++---- public-report/template/pool.html | 10 +++++ 3 files changed, 47 insertions(+), 9 deletions(-) diff --git a/public-report/template/component/location-geocode-header.html b/public-report/template/component/location-geocode-header.html index f844cf14..82a40c24 100644 --- a/public-report/template/component/location-geocode-header.html +++ b/public-report/template/component/location-geocode-header.html @@ -71,6 +71,7 @@ function displaySuggestions(suggestions) { // Display the selected location details displaySelectedLocation(suggestion); + setMapMarker(suggestion.geometry.coordinates); }); suggestionsContainer.appendChild(item); diff --git a/public-report/template/component/map-header.html b/public-report/template/component/map-header.html index 02e7732a..1b390b5a 100644 --- a/public-report/template/component/map-header.html +++ b/public-report/template/component/map-header.html @@ -2,11 +2,42 @@