Set the icon for this Marker
(self, icon)
| 481 | super().render() |
| 482 | |
| 483 | def set_icon(self, icon): |
| 484 | """Set the icon for this Marker""" |
| 485 | super().add_child(icon) |
| 486 | self.icon = icon |
| 487 | |
| 488 | def add_child(self, child, name=None, index=None): |
| 489 | import folium.features as features |
no test coverage detected