Skip to content

Commit

Permalink
Fix linked_maps bug
Browse files Browse the repository at this point in the history
  • Loading branch information
giswqs committed Dec 14, 2024
1 parent 737dae7 commit fa956dc
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 fa956dc

Please sign in to comment.