dash-leaflet
dash-leaflet copied to clipboard
E.g. by porting one of the Leaflet plugins at https://leafletjs.com/plugins.html#vector-tiles .
**Why is this feature needed?** - Allow users to interactively filter features in vector tile layer, given that hideout property is not introduced to vector tile layer yet **Why is...
Tooltips are not hidden when moving the map. Example from the instructions [https://www.dash-leaflet.com/docs/geojson_tutorial#a-scatter-plot](url) Hold down the point and drag the map. The old tooltip is not reset. When you hover...
Since `TileLayer()` [by default](https://github.com/emilhe/dash-leaflet/blob/d5491ae199cf0434a80c966464458beff0842b44/src/ts/components/TileLayer.tsx#L34) creates a layer using `openstreetmap.org` tiles, the default attribution should also be set to `OpenStreetMap`, per the [attribution guidelines](https://osmfoundation.org/wiki/Licence/Attribution_Guidelines#Attribution_text).
Ths `TileLayer` [documentation page](https://www.dash-leaflet.com/components/raster_layers/tile_layer) shows a 401 error instead of the intended tiles: It's perhaps because the developer (understandably) does not want to include the API key in the demo-code,...
While running the code import dash from dash import html import dash_leaflet as dl app = dash.Dash() app.layout = html.Div([ dl.Map([ dl.LayersControl([ dl.BaseLayer(dl.TileLayer(), name="Base", checked=True), dl.Overlay(dl.Marker(position=[56, 10]), name="Marker", checked=True) ])...
The PR introduces a `VectorTileLayer` component, based on [this library](https://gitlab.com/jkuebart/Leaflet.VectorTileLayer), which enables rendering of (protobuf) vector tiles. ``` import dash_leaflet as dl from dash import Dash from dash_extensions.javascript import assign...
I am unable to add a .fgb polygon as a GeoJSON feature to my Dash Leaflet map. I tested this using Python 3.12 with `dash==3.1.1` and `dash-leaflet==1.1.2`. Using the `Flatgeobuf`...
I tried to implement clustering using dash-leaflet. The error I had: AttributeError: module 'dash_leaflet' has no attribute 'MarkerClusterGroup' import dash import dash_leaflet as dl import dash_leaflet.express as dlx from dash...
Hi. I'm wondering if it is possible to add the pattern fills function when creating choropleth? https://observablehq.com/@clhenrick/leaflet-pattern-fills It looks like it needs the plugin https://github.com/teastman/Leaflet.pattern