Skip to content

Commit

Permalink
- Fix Map set bbox from center and zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Mar 11, 2022
1 parent 17eda98 commit cb11bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geonode/thumbs/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def get_map(
layers=layers,
styles=styles,
srs=bbox[-1] if bbox else None,
bbox=[bbox[0], bbox[1], bbox[2], bbox[3]] if bbox else None,
bbox=[bbox[0], bbox[2], bbox[1], bbox[3]] if bbox else None,
size=(width, height),
format=mime_type,
transparent=True,
Expand Down

0 comments on commit cb11bf4

Please sign in to comment.