I have recently started working on a project with geemap to create interactive and layered maps from different API sources. While setting up the geemap library i came across some issues which i was not able to find anywhere in the github as well as stackoverflow.
The piece of code that I am trying to execute is:
import geemap
Map = geemap.Map(center=[40, -100], zoom=4)
Map
The error I am getting is as follows:
TypeError: MapInterface.add() missing 1 required positional argument: 'position'
I have read up on the official documentation but was not able to find any references for solving this issue. Neither was this available in the google searches. So is there something silly that I am missing out on or using the library incorrectly?