GIS

Google Earth Engine: Map 객체가 표시되지 않는 오류 대처법

유병혁 2024. 5. 1. 09:00

안녕하세요? 최근 geemap의 의존성 라이브러리 'ipyleaflet'이 0.19 버전으로 업데이트되었고 현재 Colab에도 해당 버전이 설치된 상태입니다. ipyleaflet의 버전을 확인하는 방법은 아래와 같습니다.

import ipyleaflet
print(ipyleaflet.__version__)

 

아쉽게도 ipyleaflet 0.19 버전에 버그가 있어 Map 객체가 표시되지 않으실 겁니다.

 

Issues with ipyleaflet 0.19 in Colab · Issue #1193 · jupyter-widgets/ipyleaflet

I currently have ipyleaflet 0.19 installed in Colab, but the map is not displaying. I checked the version with the code below. import ipyleaflet print(ipyleaflet.__version__) I am using geemap, whi...

github.com

 

해당 버그가 해결되기 전까지는 ipyleaflet을 이전 버전으로 다운그레이드해서 사용해 주시면 되겠습니다.

!pip install -q ipyleaflet==0.18