(
self,
location: Sequence[float],
number_of_sides: int = 4,
rotation: int = 0,
radius: int = 15,
popup: Union[Popup, str, None] = None,
tooltip: Union[Tooltip, str, None] = None,
**kwargs: TypePathOptions,
)
| 104 | ] |
| 105 | |
| 106 | def __init__( |
| 107 | self, |
| 108 | location: Sequence[float], |
| 109 | number_of_sides: int = 4, |
| 110 | rotation: int = 0, |
| 111 | radius: int = 15, |
| 112 | popup: Union[Popup, str, None] = None, |
| 113 | tooltip: Union[Tooltip, str, None] = None, |
| 114 | **kwargs: TypePathOptions, |
| 115 | ): |
| 116 | super().__init__(location, popup=popup, tooltip=tooltip) |
| 117 | self._name = "RegularPolygonMarker" |
| 118 | self.options = path_options(line=False, radius=radius, **kwargs) |
| 119 | self.options.update( |
| 120 | dict( |
| 121 | number_of_sides=number_of_sides, |
| 122 | rotation=rotation, |
| 123 | ) |
| 124 | ) |
| 125 | |
| 126 | |
| 127 | class Vega(JSCSSMixin): |
nothing calls this directly
no test coverage detected