From fc1eec170b4f54ab8590782858eae2d27ff42e25 Mon Sep 17 00:00:00 2001 From: Devin Cowan Date: Wed, 2 Oct 2024 13:46:49 -0400 Subject: [PATCH] Fix incorrect bbox coordinates in mapClick function --- app/frontend/src/components/TheLeafletMap.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/frontend/src/components/TheLeafletMap.vue b/app/frontend/src/components/TheLeafletMap.vue index 38056553..6db63612 100644 --- a/app/frontend/src/components/TheLeafletMap.vue +++ b/app/frontend/src/components/TheLeafletMap.vue @@ -545,7 +545,7 @@ async function mapClick(e) { let defaultParameters = { service: 'WFS', request: 'GetFeature', - bbox: e.latlng.lat + ',' + e.latlng.lng + ',' + e.latlng.lat + ',' + e.latlng.lng, + bbox: e.latlng.lng + ',' + e.latlng.lat + ',' + e.latlng.lng + ',' + e.latlng.lat, SrsName: 'EPSG:4269', version: '2.0.0', EPSG:4269,