map_split does not show data #1950
Unanswered
ZofiaBaldysz
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Try using m.add_raster() to add a single layer. If it doesn't work, it is probably a Localtileserver issue. You can test Localtileserver directly without geemap |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I was trying to prepare a split map, containing two Tiff files (using function: m.split_map(tif1, tif2)). I got a map and a 'spliter' but there were no data from my Tiffs on the map (just the basemap layer). Therefore I went to the https://geemap.org/notebooks/103_split_control/, and was trying to conduct this example:
m = geemap.Map(height=600, center=[39.4948, -108.5492], zoom=12)
url = "https://github.com/opengeos/data/releases/download/raster/Libya-2023-07-01.tif"
url2 = "https://github.com/opengeos/data/releases/download/raster/Libya-2023-09-13.tif"
m.split_map(url, url2)
m
The result is the same - an empty basemap with a spliter. Does anyone know what am I doing incorretly? I didn't get any error. Just an empty map. I ran this on Colab.
Thank you
Beta Was this translation helpful? Give feedback.
All reactions