Skip to content

Commit 50decaa

Browse files
Merge pull request #1064 from davidbrochart/bounds
Fix view bounds
2 parents 7410e38 + a3a8fb9 commit 50decaa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/src/Map.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ export class LeafletMapModel extends widgets.DOMWidgetModel {
105105
var bounds = {
106106
north: -90,
107107
south: 90,
108-
east: -180,
109-
west: 180,
108+
east: -Infinity,
109+
west: Infinity,
110110
};
111111
var pixel_bounds = {
112112
top: 9007199254740991,

0 commit comments

Comments
 (0)