geemap.Map() using the base map of Stamen Terrain
时间: 2024-04-13 15:30:56 浏览: 127
World Map Globe Edition 2 V18.5.2
To create a `geemap.Map()` object using the base map of Stamen Terrain, you can modify the code as follows:
```python
import geemap.eefolium as geemap
Map = geemap.Map(center=[37.422, -122.084], zoom=13, basemap='STAMEN_TERRAIN')
```
In the above code, the `basemap='STAMEN_TERRAIN'` parameter is used to set the base map to Stamen Terrain. You can now use the `Map` object for further operations or visualization.
阅读全文