(
self,
html: Optional[str] = None,
icon_size: Optional[Tuple[int, int]] = None,
icon_anchor: Optional[Tuple[int, int]] = None,
popup_anchor: Optional[Tuple[int, int]] = None,
class_name: str = "empty",
)
| 1754 | ) # noqa |
| 1755 | |
| 1756 | def __init__( |
| 1757 | self, |
| 1758 | html: Optional[str] = None, |
| 1759 | icon_size: Optional[Tuple[int, int]] = None, |
| 1760 | icon_anchor: Optional[Tuple[int, int]] = None, |
| 1761 | popup_anchor: Optional[Tuple[int, int]] = None, |
| 1762 | class_name: str = "empty", |
| 1763 | ): |
| 1764 | super().__init__() |
| 1765 | self._name = "DivIcon" |
| 1766 | self.options = remove_empty( |
| 1767 | html=html, |
| 1768 | icon_size=icon_size, |
| 1769 | icon_anchor=icon_anchor, |
| 1770 | popup_anchor=popup_anchor, |
| 1771 | class_name=class_name, |
| 1772 | ) |
| 1773 | |
| 1774 | |
| 1775 | class LatLngPopup(MacroElement): |
nothing calls this directly
no test coverage detected