(self, locations, popup=None, tooltip=None, **kwargs)
| 190 | ) |
| 191 | |
| 192 | def __init__(self, locations, popup=None, tooltip=None, **kwargs): |
| 193 | super().__init__(locations, popup=popup, tooltip=tooltip) |
| 194 | self._name = "PolyLine" |
| 195 | self.options = path_options(line=True, **kwargs) |
| 196 | |
| 197 | |
| 198 | class Polygon(BaseMultiLocation): |
nothing calls this directly
no test coverage detected