Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ Next, create a virtual environment and install the python dependencies (make sur
```
uv venv && source .venv/bin/activate && uv sync
```
pip install dash

pip install PyYAML



Finally, install packages via npm (ignore errors) and run the build script,

Expand All @@ -61,3 +66,9 @@ npm run build
## Donation

[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=Z9RXT5HVPK3B8&currency_code=DKK&source=url)

## Contributing
Useful commands for development:
- `npm install`: Install JavaScript dependencies.
- `npm run build`: Build the JavaScript components.
- `pip install -e .` to install the package in editable mode.
8 changes: 8 additions & 0 deletions dash_leaflet/_imports_.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
from .CanvasTextLayer import CanvasTextLayer
from .StreetLabelContext import StreetLabelContext
from .AntPath import AntPath
from .AttributionControl import AttributionControl
from .BaseLayer import BaseLayer
from .Circle import Circle
Expand Down Expand Up @@ -27,13 +30,17 @@
from .Rectangle import Rectangle
from .SVGOverlay import SVGOverlay
from .ScaleControl import ScaleControl
from .StreetLabelProvider import StreetLabelProvider
from .TileLayer import TileLayer
from .Tooltip import Tooltip
from .VideoOverlay import VideoOverlay
from .WMSTileLayer import WMSTileLayer
from .ZoomControl import ZoomControl

__all__ = [
"CanvasTextLayer",
"StreetLabelContext",
"AntPath",
"AttributionControl",
"BaseLayer",
"Circle",
Expand Down Expand Up @@ -63,6 +70,7 @@
"Rectangle",
"SVGOverlay",
"ScaleControl",
"StreetLabelProvider",
"TileLayer",
"Tooltip",
"VideoOverlay",
Expand Down
Loading