We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GeoPandas CI is failing with Folium main due to the icon passed to the marker no longer being used.
import folium fc = {'type': 'FeatureCollection', 'features': [{'id': '0', 'type': 'Feature', 'properties': {'name': 'Vatican City'}, 'geometry': {'type': 'Point', 'coordinates': (12.4533865, 41.9032822)}, 'bbox': (12.4533865, 41.9032822, 12.4533865, 41.9032822)}], 'bbox': (12.4533865, 41.9032822, 12.4533865, 41.9032822)} m = folium.Map() marker = folium.Marker(icon=folium.Icon(icon="star")) folium.GeoJson( fc, marker=marker, ).add_to(m) m
This creates a marker with a star symbol in folium 0.19.4 but uses default on main.
The text was updated successfully, but these errors were encountered:
Sorry about that Martin! I made a fix that should hopefully solve this issue.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
GeoPandas CI is failing with Folium main due to the icon passed to the marker no longer being used.
This creates a marker with a star symbol in folium 0.19.4 but uses default on main.
The text was updated successfully, but these errors were encountered: