Skip to content

Commit

Permalink
Merge pull request #1064 from davidbrochart/bounds
Browse files Browse the repository at this point in the history
Fix view bounds
  • Loading branch information
davidbrochart authored Oct 19, 2022
2 parents 7410e38 + a3a8fb9 commit 50decaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions js/src/Map.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ export class LeafletMapModel extends widgets.DOMWidgetModel {
var bounds = {
north: -90,
south: 90,
east: -180,
west: 180,
east: -Infinity,
west: Infinity,
};
var pixel_bounds = {
top: 9007199254740991,
Expand Down

0 comments on commit 50decaa

Please sign in to comment.