I'm encountering the same issue as described in #107, reported in June 2024.
The issue is marked as fixed in #108, which was merged on March 13, 2025, but the latest release is still 1.6.0 from March 2024...
Can we get a new release?
For completeness, my code includes an ipyleaflet.Map and I'm adding an ipyleaflet.Marker with an ipyleafletAwesomeIcon thus:
# Set marker at the clicked location
marker = ipyleaflet.Marker(location=(lat, lon),
icon=ipyleaflet.AwesomeIcon(marker_color='red'))
The marker appears with a default symbol (appears as a house/home symbol), but I observe the following 404's:
404 GET /static/extensions/ipywidgets_bokeh/3dfd3127e3794acab459.woff2
404 GET /static/extensions/ipywidgets_bokeh/a32e68d9472b3557a6a2.woff
404 GET /static/extensions/ipywidgets_bokeh/483f64f5a997c40908d9.ttf
Here's the HTML element
<div class="leaflet-pane leaflet-marker-pane"><div class="awesome-marker-icon-red awesome-marker leaflet-zoom-animated leaflet-interactive leaflet-marker-draggable" tabindex="0" role="button" style="margin-left: -17px; margin-top: -42px; width: 35px; height: 45px; transform: translate3d(449px, 248px, 0px); z-index: 248;"><i class=" fa fa-home icon-white"></i></div></div>
If I try to specify another icon than the default, with name='...', the symbol which is displayed is just a box.
My environment, for the record:
- Python 3.13.7 (Anaconda)
- bokeh==3.8.0
- ipywidgets==8.1.7
- ipywidgets-bokeh==1.6.0
- panel==1.8.1
- ipyleaflet==0.20.0
I'm encountering the same issue as described in #107, reported in June 2024.
The issue is marked as fixed in #108, which was merged on March 13, 2025, but the latest release is still 1.6.0 from March 2024...
Can we get a new release?
For completeness, my code includes an
ipyleaflet.Mapand I'm adding anipyleaflet.Markerwith anipyleafletAwesomeIconthus:The marker appears with a default symbol (appears as a house/home symbol), but I observe the following 404's:
Here's the HTML element
If I try to specify another icon than the default, with
name='...', the symbol which is displayed is just a box.My environment, for the record: