ipyleaflet
ipyleaflet copied to clipboard
A Jupyter - Leaflet.js bridge
I have created an interactive choropleth map (including different Layers) that represents polygons (regions). I want to create a popup when clicking a polygon that will show specific information about...
Using Panel `0.14.2` ```python import panel as pn pn.extension('ipywidgets') from ipyleaflet import Map, basemaps center = [38.128, 2.588] zoom = 5 m = Map(basemap=basemaps.OpenStreetMap.Mapnik, center=center, zoom=zoom) pn.panel(m).servable(target='main') ``` 
Hello pythoneers, I am developping an ipyleaflet app using jupyter notebook and i encountered the following issues. The script of an easy example is available below. The 2 first points...
Hi! I need to generate multiple maps and save them to my system. I noticed that calling `m.save()` multiple times increases the size of the exported HTML map. Consider the...
I get an error when I run the code below in jupiter lab. How can I fix ? ``` Set study area using ipyleaflet m = Map(center=(14, -90), zoom =...
The ipyleaflet `VectorTileLayer` does not render when zoom level is greater than 14. I found the `maxNativeZoom` [issue](https://github.com/Leaflet/Leaflet.VectorGrid/issues/74) in the upstream [Leaflet.VectorGrid](https://github.com/Leaflet/Leaflet.VectorGrid/issues/74). Unfortunately, the repo is no longer being actively...
https://ipyleaflet.readthedocs.io/en/latest/index.html some pages have a "edit in github page"
Hello Team, I wanted to create a cluster with more than 4000 elements and the process was running slow (or infinite), anyway more than 30 secs. I ended up testing...
Is this possible? I have a large collection of images taken at different positions. For each position i have a marker and want to show the image on markerclick without...
There's an issue with `ipyleaflet` where the measure control icon shows up twice, as shown in this image:  Here is the code I used: ``` import ipyleaflet m =...