Questions tagged [dash-leaflet]

34 questions
0
votes
1 answer

Dash leaflet not rendering when inside a Bootstrap tab container

I am trying to create a simple Dash application that includes Dash-Leaflet so that it plots some points as markers. It is apparently working as expected when no styles are applied. But I would like to create a layout with bootstrap with tabs as in…
juancar
  • 187
  • 2
  • 16
0
votes
1 answer

Dash Leaflet popup to show multiline with links

I have make a simple map using dash-leaflet and I wanted to add a popup based on some data that I have. This data contains names, prices and links which I would like to show in the popup. I tried to do the following but it gave this result: for…
Ben
  • 1,737
  • 2
  • 30
  • 61
0
votes
1 answer

Is there a way to rotate a dash-leaflet dl.Rectangle() through a callback?

I'm building an python dash-leaflet app where the user can click on a map to place a rectangle through a callback, and I would like to add a second callback (bond to a slider) to rotate it around its center according to North (eg. rotate it by 20°…
Mat.B
  • 336
  • 2
  • 8
0
votes
0 answers

Callback on dash_leaflet to print range of current map

How can I trigger a callback-event when zooming (in or out) in dash_leaflet which gives me the current range of the shown map (the minimal/maximal x/y position)? Here a minimal working example with a callback which gives me the center, but not the…
olli
  • 59
  • 4
0
votes
1 answer

Integrating Dash and Flask by inserting Dash chart into div block of Flask template

My team is currently working on a project but recently we've got the following problem. To begin with, we're creating a website via Flask. We've already done a lot of work and have some nice html templates. However, the thing is that now we need to…
0
votes
1 answer

Scatterplot with dropdown function in dash leaflet

I want to start using dash leaflet for a project of mine (I was using folium). I´m trying to create a scatterplot with a dropdown functionality. I was able to create the scatterplot and add the dropdown but it doesn`t work. Here is my code: import…
FG85
  • 41
  • 4
0
votes
2 answers

Marker Icons In Dash Leaflet

I have been working with both Folium and Dash Leaflet and one thing that I wish is that they were more consistent on how to do the same thing. As the title of the question suggests, I am looking to achieve changing the marker icons in Dash Leaflet.…
0
votes
0 answers

Passing subdomains to dash_leaflet.TileLayer

I have followed and adapted the LayersControl example from https://dash-leaflet.herokuapp.com/. I am trying to include a basemap from this (https://basemap.at/wmts/1.0.0/WMTSCapabilities.xml) source. Upon running the code I get the error Invalid…
geopanda1
  • 67
  • 6
0
votes
1 answer

FloatImage in Dash Leaflet

So I have been working with folium and dash-leaflet for a little bit and I have been seeing some differences in how you create maps between the two packages. One of the things that I have found in folium that is nice is an object called a FloatImage…
0
votes
1 answer

GeoTIFFOverlay not working (not showing image) in Dash Leaflet

I'm developing a dashboard using Dash Leaflet, and I want to use the function GeoTIFFOverlay, in order to display a TIFF image on the map: this is the code for testing purpose that I'm using: import dash import dash_leaflet as dl from dash import…
0
votes
1 answer

Add popup to polylines dash-leaflet

I would like to add popup to polylines in dash-leaflet, how can I do that? In the example it is shown as import dash_leaflet as dl from dash import Dash, html #Simple-line. polyline = dl.Polyline(positions=[[37.97168, 23.726464], [37.971687,…
0
votes
0 answers

How to return multiple markers for dash leaflet map based on the current page rows in a datatable

So I've tried many iterations of returning a for loop for this code everything else appears to be working as intended. I'll try to just include relevant code snips. ''' dcc.Dropdown( id='select_page_size', options=[ …
0
votes
1 answer

How can I make an interactive world map in dash-leaflet?

I'm trying to replicate this example from the dash-leaflet documentation, but for world countries instead of US states. However, when I run the code from the documentation on my machine I don't see the blue state borders in the output visual. I…
0
votes
0 answers

Python : dash-leaflet specific color for each polygon

I can not set color of each polygon. I can set all polygons color for example to black or blue but i can not adjust them one by one Actually i want to set their color by a column value of pandas for each record Eg: if value was higher than 100 the…
kian kian
  • 1
  • 1
  • 4
0
votes
1 answer

How to use dl.Overlay with multiple inputs?

I tried to apply dl.Overlay on multiple inputs (markers and circles) but it shows me an overlay for each input separately. I want to have at the end a single overlay for all the markers and the circles around. Any suggestions ? Here's the code i…