(
self,
locations: TypeMultiLine,
popup: Union[Popup, str, None] = None,
tooltip: Union[Tooltip, str, None] = None,
**kwargs: TypePathOptions,
)
| 229 | ) |
| 230 | |
| 231 | def __init__( |
| 232 | self, |
| 233 | locations: TypeMultiLine, |
| 234 | popup: Union[Popup, str, None] = None, |
| 235 | tooltip: Union[Tooltip, str, None] = None, |
| 236 | **kwargs: TypePathOptions, |
| 237 | ): |
| 238 | super().__init__(locations, popup=popup, tooltip=tooltip) |
| 239 | self._name = "Polygon" |
| 240 | self.options = path_options(line=True, radius=None, **kwargs) |
| 241 | |
| 242 | |
| 243 | class Rectangle(MacroElement): |
nothing calls this directly
no test coverage detected