```{code-cell} ipython3 --- nbsphinx: hidden --- import folium from folium import plugins ``` # PolyLineFromEncoded Create a PolyLine directly from an encoded polyline string. To understand the encoding algorithm refer to [this](https://developers.google.com/maps/documentation/utilities/polylinealgorithm) link. ```{code-cell} ipython3 m = folium.Map(location=[40, -120], zoom_start=5) encoded = r"_p~iF~cn~U_ulLn{vA_mqNvxq`@" plugins.PolyLineFromEncoded(encoded=encoded).add_to(m) m ```