MCPcopy
hub / github.com/python-visualization/folium / __init__

Method __init__

folium/map.py:175–186  ·  view source on GitHub ↗
(
        self,
        name: Optional[str] = None,
        overlay: bool = True,
        control: bool = True,
        show: bool = True,
        **kwargs: TypeJsonValue,
    )

Source from the content-addressed store, hash-verified

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
189class LayerControl(MacroElement):

Callers

nothing calls this directly

Calls 2

remove_emptyFunction · 0.90
__init__Method · 0.45

Tested by

no test coverage detected