Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vector tile layer #255

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion dash_leaflet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

# region Async modifications

async_resources = ["LocateControl", "MeasureControl", "EditControl.ts", "GeoJSON", "geobuf", "flatgeobuf"]
async_resources = ["LocateControl", "MeasureControl", "EditControl.ts", "GeoJSON", "VectorTileLayer", "geobuf", "flatgeobuf"]

_js_dist.extend(
[
Expand Down
2 changes: 2 additions & 0 deletions dash_leaflet/_imports_.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
from .ScaleControl import ScaleControl
from .TileLayer import TileLayer
from .Tooltip import Tooltip
from .VectorTileLayer import VectorTileLayer
from .VideoOverlay import VideoOverlay
from .WMSTileLayer import WMSTileLayer
from .ZoomControl import ZoomControl
Expand Down Expand Up @@ -63,6 +64,7 @@
"ScaleControl",
"TileLayer",
"Tooltip",
"VectorTileLayer",
"VideoOverlay",
"WMSTileLayer",
"ZoomControl"
Expand Down
Loading