ipyleaflet
ipyleaflet copied to clipboard
A Jupyter - Leaflet.js bridge
The following code will not produce proper results: ``` mymap = Map(center=(lat, lon), zoom=4) right_layer = Heatmap(locations=right_locations, max_zoom=max_zoom, radius=radius, max=max_value) left_layer = Heatmap(locations=left_locations, max_zoom=max_zoom, radius=radius, max=max_value) split_map_control = SplitMapControl(left_layer=left_layer ,...
This will fix #785 @martinRenou - Please review.
This code does not show the map until after we uncomment the two commented lines. Once these two lines have been run the map then renders without the commented lines...
As far as I can tell, currently there's no way to add a colorbar or legend to layers. Without a legend, the visualization is not meaningful.
Hello there. I'd like to know if it is possible to dynamically style the features in VectorTileLayer, much like https://leaflet.github.io/Leaflet.VectorGrid/vectorgrid-api-docs.html I tried to put a function instead of a dictionary...
Hi, I created a script for an interactive map to find shortest path between 2 locations based on [https://ipyleaflet.readthedocs.io/en/latest/usage.html?highlight=observe](url) and [https://git.io/J6y6O](url) This is how I handle change in marker position:...
@wolfv produced a really nice demo making use of the [browser geo location API](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API) to adapt content to the user location. It may be interesting to expose such features in...
 I am getting a "Error displaying widget: model not found" error while trying to run ipyleaflet in Jupyterlab desktop app. Map=ipyleaflet.Map() gives the same error. Is there any way...
The documentation says that `Marker` has the `title` attribute for setting the tooltip, but it has no effect. Hoving over the marker does not show the tooltip. https://ipyleaflet.readthedocs.io/en/latest/api_reference/marker.html  ```...
Hi, I'm working with a geojson file in which the ID attribute for each feature isn't at the root of "features" but a level below in a "properties" object. Using...