Skip to content

Commit

Permalink
Fix linked_maps bug (#2192)
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs authored Dec 14, 2024
1 parent 737dae7 commit 582310a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geemap/geemap.py
Original file line number Diff line number Diff line change
Expand Up @@ -5054,7 +5054,7 @@ def linked_maps(

for i in range(rows):
for j in range(cols):
index = i * rows + j
index = i * (rows - 1) + j
m = Map(
height=height,
lite_mode=True,
Expand Down

0 comments on commit 582310a

Please sign in to comment.