Leaflet component for Dash
Project description
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==1.16.0
pip install dash-leaflet
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
app = dash.Dash()
app.layout = dl.Map(dl.TileLayer(), 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.
Documentation
The documentation has been moved to Heroku to enable an interactive example gallery.
NB: The 0.1.0 release contains a number breaking changes, most prominently merging of the SuperCluster
and GeoJSON
components into a new GeoJSON
component powered by functional properties.
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:all
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 Distributions
Built Distribution
Hashes for dash_leaflet-0.1.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c65099b7c5491427c42f2cd9a7402456751546361d1d8db33b359cf0e545c457 |
|
MD5 | ac694494a0cc57564691e32948221a7c |
|
BLAKE2b-256 | ba74de4eff35c8b791f611d588cbf5897916805a4670e204f181db3d841f3410 |