From b77d9aa80a2c11278e62581c3df080e401c433ed Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Mon, 2 Feb 2026 07:14:03 +0000 Subject: [PATCH] Correctly set location data after reverse geocode This fixes the location when a marker drag finishes --- rmo/template/nuisance.html | 1 + 1 file changed, 1 insertion(+) diff --git a/rmo/template/nuisance.html b/rmo/template/nuisance.html index f77bac98..47839138 100644 --- a/rmo/template/nuisance.html +++ b/rmo/template/nuisance.html @@ -19,6 +19,7 @@ async function handleMarkerDrag(lngLat) { if (response !== undefined && response.features.length > 0) { const addressInput = document.querySelector("address-input"); addressInput.SetValue(response.features[0]); + setLocationInputs(response.features[0]); } } function selectInspectionType(type) {