#!/usr/bin/env python # coding: utf-8 # Open in Colab # # Uncomment the following line to install [geemap](https://geemap.org) if needed. # In[ ]: # !pip install geemap # In[ ]: import ee import geemap # In[ ]: geemap.show_youtube('lwtgzrHrXj8') # ## Update the geemap package # # If you run into errors with this notebook, please uncomment the line below to update the [geemap](https://github.com/giswqs/geemap#installation) package to the latest version from GitHub. # Restart the Kernel (Menu -> Kernel -> Restart) to take effect. # In[ ]: # geemap.update_package() # ## Create an interactive map # In[ ]: Map = geemap.Map() Map # ## Convert marker to ee.Geometry # In[ ]: Map.search_locations # In[ ]: Map.search_loc_geom # In[ ]: location = Map.search_loc_geom # print(location.getInfo())