Wrapper of leaflet-geoman components for Plotly Dash
The easiest way to get started is to install the latest version of Dash and dash-geoman via pip.
pip install dash==2.0.0
pip install dash-geoman
Once the installation is completed, paste the following lines of code into a .py file and run it.
import dash
import dash_leaflet as dl
import dash_geoman as dgm
app = dash.Dash()
app.layout = dl.Map(children=[
dl.TileLayer(),
dgm.Geoman(),
], style={'width': '1000px', 'height': '500px'})
if __name__ == '__main__':
app.run_server()
If you visit http://127.0.0.1:8050/ in your browser, you should see a leaflet
map and dash-geoman
's edit controls.
Start by cloning this repository,
git clone [email protected]:pikhovkin/dash-geoman.git
cd dash-geoman
Next, create a virtual environment and install the python dependencies,
python3 -m venv venv && . venv/bin/activate
pip install -r requirements.txt
Finally, install packages via npm (ignore errors) and run the build script,
npm i --ignore-scripts
npm run build
MIT