import folium
m = folium.Map(world_copy_jump=False, no_wrap=False)
folium.Marker(
location=[0, 0], popup="I will disapear when moved outside the wrapped map domain."
).add_to(m)
m
m = folium.Map(world_copy_jump=True, no_wrap=False)
folium.Marker(
location=[0, 0],
popup="I will magically reappear when moved outside the wrapped map domain.",
).add_to(m)
m
m = folium.Map(
world_copy_jump=False,
no_wrap=True,
)
folium.Marker(location=[0, 0], popup="The map domain here is not wrapped!").add_to(m)
m