ipyleaflet icon indicating copy to clipboard operation
ipyleaflet copied to clipboard

A Jupyter - Leaflet.js bridge

Results 227 ipyleaflet issues
Sort by recently updated
recently updated
newest added
trafficstars

While the recent deprecation of `DrawControl` in favor of `GeomanDrawControl` (and its variant `DrawControlCompatibility` for compatibility) is in general a clear improvement, there is a key behavior difference: Geoman allows...

The following code shows the problem: ``` from ipyleaflet import Map, Marker, DivIcon m = ipyleaflet.Map(center = (52, -8)) def handler(**kwargs): if kwargs['type'] == 'mousemove': print(kwargs) icon = DivIcon(icon_size =...

I am trying to make an ocean map layer, including bathymetry, from [this Esri vector tile service](https://basemaps.arcgis.com/arcgis/rest/services/World_Basemap_v2/VectorTileServer/tile/{z}/{y}/{x}.pbf). I am able to style the various bathymetry depths by providing a JavaScript...

Hi there, the FullScreenControl widget doesn't seem to work in vscode. Reproduction steps: ```python from ipyleaflet import Map, basemaps, basemap_to_tiles, FullScreenControl m = Map( basemap=basemap_to_tiles(basemaps.NASAGIBS.ModisTerraTrueColorCR, "2017-04-08"), center=(52.204793, 360.121558), zoom=4 )...

if I do `pip uninstall ipyleaflet` I would expect that my `share/jupyter/labextensions/jupyter-leaflet` folder is also removed, but that doesn't happen. To fully uninstall it I need to `pip uninstall ipyleaflet`...

I am trying to draw polygons where the polygon color is determined by `ipywidget.widgets.RadioButtons` This is what I got so far (inspired by https://github.com/jupyter-widgets/ipyleaflet/issues/425) ```python import ipywidgets as widgets from...

Removing `SplitMapControl` doesn't update the map layers, if I remove this control, I would expect to leave the map as it was before of adding it? this, however doesn't happen...

The ImageOverlay Layer in ipyleaflet is "jumpy" when zooming or panning around a map. Specifically, when you zoom or pan, the original overlay stays on the screen (in the same...

I have an issue similar to #925. When I zoom in on a layer, once I get to or passed it's original `max_zoom` setting the map goes blank, instead of...

If you add a goeman draw control with a given set of options, then change the options by setting them on widget, the options are synced to the browser JS...