Default Icon Failing to Show
See original GitHub issueI’m trying to use the sample code
from ipyleaflet import Map, Marker
center = (52.204793, 360.121558)
m = Map(center=center, zoom=15)
marker = Marker(location=center, draggable=False)
m.add_layer(marker);
m
This shows the map, but no icon shows.
If I use a custom icon like this, it works:
from ipyleaflet import Marker, Icon, Map
center = (52.204793, 360.121558)
m = Map(center=center, zoom=10)
icon = Icon(icon_url='https://leafletjs.com/examples/custom-icons/leaf-green.png', icon_size=[38, 95], icon_anchor=[22,94])
mark = Marker(location=center, icon=icon, rotation_angle=90, rotation_origin='22px 94px')
m.add_layer(mark);
m
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
How to Fix Broken or Missing Icons and Thumbnails in ...
Are your desktop icons and image thumbnails not displaying correctly? Here is a way you can fix them in Windows 10.
Read more >Desktop Icons Not Showing Up - Driver Support
If it's just the default (system) icons you seek, right-click the desktop and choose Personalize. Go into Themes and select Desktop icon settings....
Read more >How to Fix Blank Icons in Windows 10 - Help Desk Geek
1. Press Ctrl + Shift + Esc to open the Task Manager. ; 2. Select More details to expand the default Task Manager...
Read more >Issue with Default Image Icons. - Microsoft Community
Open the file explorer page to see the icons of the pictures. b. Click on View in the ribbon and select Large Icons....
Read more >FIXED: Desktop Icons Not Showing Properly In Win 8,8.1,10
Once done implementing this easy fix, Windows rebuilds the icon cache and you would be able to see all the icons as they...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Should be fixed by #552
Yes Yes this is what I see in the Chrome Debugger.