Is it possible to add href to the marker's popup property so when I click it I can go to another web page/file?
popup = folium.Popup('<a href=" [URL GOES HERE] "target="_blank"> [text for link goes here]' </a>')
you can see an example of this in a notebook I am just now working on putting together:
https://github.com/collinreinking/longitude_latitude_dot_plots_in_python_with_folium/
Thanks @collinreinking that is a good answer. Closing this as resolved.
Most helpful comment
popup = folium.Popup('<a href=" [URL GOES HERE] "target="_blank"> [text for link goes here]' </a>')you can see an example of this in a notebook I am just now working on putting together:
https://github.com/collinreinking/longitude_latitude_dot_plots_in_python_with_folium/