Dash Leaflet is a light wrapper around React-Leaflet. The syntax is similar to other Dash components, with naming conventions following the React-Leaflet API.
Project description
Dash Leaflet
Dash Leaflet is a light wrapper around React-Leaflet. The syntax is similar to other Dash components, with naming conventions following the React-Leaflet API.
Getting started
The easiest way to get started is to install the latest version of Dash and Dash Leaflet via pip.
pip install dash
pip install dash-leaflet
Once the installation is completed, paste the following lines of code into a .py file and run it.
from dash import Dash
import dash_leaflet as dl
app = Dash()
app.layout = dl.Map(dl.TileLayer(), style={'height': '50vh'}, center=[56, 10], zoom=6)
if __name__ == '__main__':
app.run_server()
That's it! If you visit http://127.0.0.1:8050/ in your browser, you should see a Leaflet map.
Documentation
The documentation has been moved to a separate page to enable an interactive example gallery.
NB: The 1.0.0 release contains a wide range of breaking changes, please refer to the migration guidelines
Support
Please ask questions on StackOverflow using the dash-leaflet
tag, use GitHub issues only for bug reports.
Build instructions
Start by cloning this repository,
git clone git@github.com:thedirtyfew/dash-leaflet.git
cd dash-leaflet
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
Donation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file dash_leaflet-1.0.15.tar.gz
.
File metadata
- Download URL: dash_leaflet-1.0.15.tar.gz
- Upload date:
- Size: 243.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79a3e19b0be9a5cf23873a0cd73153de224cbd756ddb30e2ffcee9ba23875e40 |
|
MD5 | 487b9c200ab4481d9b9808e852de36d6 |
|
BLAKE2b-256 | a0a3f38986785869b67721984a2c131372bbd720e5a00bb4769e417f3a8c7000 |
File details
Details for the file dash_leaflet-1.0.15-py3-none-any.whl
.
File metadata
- Download URL: dash_leaflet-1.0.15-py3-none-any.whl
- Upload date:
- Size: 285.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7d06228a868bcf11120e1f7cb95db64c29c412b743686a9a8e1b30ac54a794e |
|
MD5 | 3d81952b9a308ff43f96f9a0d5b5aba2 |
|
BLAKE2b-256 | 266a3a75338d37c45c10a552c73ccd68f7ede9c9b36fa9ef39dbf710a662ccc0 |