For this project, the requirement is to create a web page using R Markdown that features a map created with Leaflet.
I have created a map featuring the Cape Town Waterfront in South Africa.
library(leaflet)
waterfront <- paste(
c("<a href= 'https://www.waterfront.co.za'>Waterfront</a>"),
format(Sys.Date(), format="%d %B %Y"))
leaflet() %>% addTiles() %>% addMarkers(lat=-33.901829726, lng=18.420331652, popup = waterfront)