Using Leaflet to create an interactive map

This is a map of Onrus River near Hermanus, South Africa. Click on the marker for more information.

my_map <- leaflet() %>%
  addTiles() %>%
  addMarkers(lat=-34.419, lng=19.18, popup="<a href= 'https://www.sa-venues.com/attractionswc/onrus.php'>More on Onrus</a>", label= "Onrus Beach")
my_map