Skip to content

Commit

Permalink
Fix incorrect bbox coordinates in mapClick function
Browse files Browse the repository at this point in the history
  • Loading branch information
devincowan committed Oct 2, 2024
1 parent 7879860 commit fc1eec1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/frontend/src/components/TheLeafletMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit fc1eec1

Please sign in to comment.