Oliver Lopez
Oliver Lopez
Ok, I will work on implementing the new tests when I get a chance, which will likely require comparing some generated `.mie` text files. I also just pushed a new...
@giswqs There are a couple of separate issues here. First, the current implementation of VectorTileLayer in ipyleaflet does not have the `max_native_zoom` parameter implemented. So, if you zoom in more...
Thanks @dobedobedo ! and sorry for the long delay Cheers
Here's a workaround: ```python popup.location = [51.505, 0] popup.close_popup() popup.open_popup() ```
I am also facing this issue more generally trying to import any widget or layer. Here's a minimal reproducible example: ```python import solara import ipyleaflet import ipywidgets imported_widget = ipywidgets.Label(value="LABEL")...
> > But the VectorGrid plugin has access to it or it couldn't apply the styling functions mentions on the page above > > Only JavaScript side. > > A...
This is currently possible using folium with the [vectorGrid plugin](https://github.com/iwpnd/folium-vectorgrid):  where `options` is a string including the JS function: options='''{ "vectorTileLayerStyles": { "2015ETm3": function(f) { var fieldColor = "#ffffcc";...
@martinRenou Would it be possible to add some small typescript code (potentially just one line?) in [LeafletVectorTileLayerModel](https://github.com/jupyter-widgets/ipyleaflet/blob/ee2bdb16332c43c56602091444f87b61b7f1e3b7/python/jupyter_leaflet/src/layers/VectorTileLayer.ts#L8) that sets `vectorTileLayerStyles` either as a dictionary (as it currently is) OR a...
Hi @drclanc-oss . Unfortunately, I don't think there is a way to control the order. However, you can try adding multiple *leaflet* layers with different `vectorTileLayerOptions`: ```python from ipyleaflet import...
Here's what happens if I set `overflow='scroll'` in the `panel_box` layout:  The horizontal and vertical scroll appear, but they are not enabled (seems like the actual bars are missing).