lat = +38.89399
lon = -77.03659
zoom_start = 17
m = folium.Map(location=[lat, lon], zoom_start=zoom_start)
kw = {"color": "red", "fill": True, "radius": 20}
folium.CircleMarker([38.89415, -77.03738], **kw).add_to(m)
folium.CircleMarker([38.89415, -77.03578], **kw).add_to(m)
locations = [
[
(38.893596444352134, -77.03814983367920),
(38.893379333722040, -77.03792452812195),
],
[
(38.893379333722040, -77.03792452812195),
(38.893162222428310, -77.03761339187622),
],
[
(38.893162222428310, -77.03761339187622),
(38.893028615148424, -77.03731298446655),
],
[
(38.893028615148424, -77.03731298446655),
(38.892920059048464, -77.03691601753235),
],
[
(38.892920059048464, -77.03691601753235),
(38.892903358095296, -77.03637957572937),
],
[
(38.892903358095296, -77.03637957572937),
(38.893011914220770, -77.03592896461487),
],
[
(38.893011914220770, -77.03592896461487),
(38.893162222428310, -77.03549981117249),
],
[
(38.893162222428310, -77.03549981117249),
(38.893404384982480, -77.03514575958252),
],
[
(38.893404384982480, -77.03514575958252),
(38.893596444352134, -77.03496336936950),
],
]
folium.PolyLine(
locations=locations,
color="orange",
weight=8,
opacity=1,
smooth_factor=0,
).add_to(m)
m