(
self,
location: Optional[Sequence[float]] = None,
radius: float = 10,
popup: Union[Popup, str, None] = None,
tooltip: Union[Tooltip, str, None] = None,
**kwargs: TypePathOptions,
)
| 377 | ) |
| 378 | |
| 379 | def __init__( |
| 380 | self, |
| 381 | location: Optional[Sequence[float]] = None, |
| 382 | radius: float = 10, |
| 383 | popup: Union[Popup, str, None] = None, |
| 384 | tooltip: Union[Tooltip, str, None] = None, |
| 385 | **kwargs: TypePathOptions, |
| 386 | ): |
| 387 | super().__init__(location, popup=popup, tooltip=tooltip) |
| 388 | self._name = "CircleMarker" |
| 389 | self.options = path_options(line=False, radius=radius, **kwargs) |
nothing calls this directly
no test coverage detected