MCPcopy Create free account
hub / github.com/python-visualization/folium / __init__

Method __init__

folium/plugins/polyline_text_path.py:55–79  ·  view source on GitHub ↗
(
        self,
        polyline,
        text,
        repeat=False,
        center=False,
        below=False,
        offset=0,
        orientation=0,
        attributes=None,
        **kwargs
    )

Source from the content-addressed store, hash-verified

53 ]
54
55 def __init__(
56 self,
57 polyline,
58 text,
59 repeat=False,
60 center=False,
61 below=False,
62 offset=0,
63 orientation=0,
64 attributes=None,
65 **kwargs
66 ):
67 super().__init__()
68 self._name = "PolyLineTextPath"
69 self.polyline = polyline
70 self.text = text
71 self.options = remove_empty(
72 repeat=repeat,
73 center=center,
74 below=below,
75 offset=offset,
76 orientation=orientation,
77 attributes=attributes,
78 **kwargs
79 )

Callers

nothing calls this directly

Calls 1

remove_emptyFunction · 0.90

Tested by

no test coverage detected