(
self,
name: Optional[str] = None,
overlay: bool = True,
control: bool = True,
show: bool = True,
**kwargs: TypeJsonValue,
)
| 173 | ) |
| 174 | |
| 175 | def __init__( |
| 176 | self, |
| 177 | name: Optional[str] = None, |
| 178 | overlay: bool = True, |
| 179 | control: bool = True, |
| 180 | show: bool = True, |
| 181 | **kwargs: TypeJsonValue, |
| 182 | ): |
| 183 | super().__init__(name=name, overlay=overlay, control=control, show=show) |
| 184 | self._name = "FeatureGroup" |
| 185 | self.tile_name = name if name is not None else self.get_name() |
| 186 | self.options = remove_empty(**kwargs) |
| 187 | |
| 188 | |
| 189 | class LayerControl(MacroElement): |
nothing calls this directly
no test coverage detected