Skip to content

Commit

Permalink
fix bbox being an array
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed May 26, 2023
1 parent cdfb77b commit 89bfaaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/django_oapif/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def _describe(self, request, base_url):
]
response["extent"] = {
"spatial": {
"bbox": [LL[0], LL[1], UR[0], UR[1]],
"bbox": [[LL[0], LL[1], UR[0], UR[1]]],
"crs": "http://www.opengis.net/def/crs/OGC/1.3/CRS84",
},
}
Expand Down

0 comments on commit 89bfaaa

Please sign in to comment.