Geolog is a Python package developed for geospatial analysis and map creation using ipyleaflet
. It includes tools for adding drawing controls and other geospatial functionalities.
add_draw_controls()
: Enables drawing shapes on maps.- More features planned for future updates.
pip install geolog
from geolog import add_draw_controls
add_draw_controls()
from geolog import add_draw_controls
import ipyleaflet
# Create a map
m = ipyleaflet.Map(center=(34.05, -118.25), zoom=10)
# Add drawing controls to the map
add_draw_controls(m)
# Display the map
m
This project is licensed under the MIT License.
For more information, visit the Geolog documentation.
Created using Cookiecutter and the giswqs/pypackage template.