MCPcopy Index your code
hub / github.com/python-visualization/folium / __init__

Method __init__

folium/vector_layers.py:231–240  ·  view source on GitHub ↗
(
        self,
        locations: TypeMultiLine,
        popup: Union[Popup, str, None] = None,
        tooltip: Union[Tooltip, str, None] = None,
        **kwargs: TypePathOptions,
    )

Source from the content-addressed store, hash-verified

229 )
230
231 def __init__(
232 self,
233 locations: TypeMultiLine,
234 popup: Union[Popup, str, None] = None,
235 tooltip: Union[Tooltip, str, None] = None,
236 **kwargs: TypePathOptions,
237 ):
238 super().__init__(locations, popup=popup, tooltip=tooltip)
239 self._name = "Polygon"
240 self.options = path_options(line=True, radius=None, **kwargs)
241
242
243class Rectangle(MacroElement):

Callers

nothing calls this directly

Calls 2

path_optionsFunction · 0.85
__init__Method · 0.45

Tested by

no test coverage detected