Create a web page using R Markdown that features a map created with Leaflet. This is the Vall d’Hebron University Hospital in Barcelona, my workplace.
41.428083°N 2.142278°E
library(leaflet)
my_map <- leaflet() %>%
addTiles() %>%
addMarkers(lng=2.142278, lat=41.428083, popup="Vall d'Hebron University Hospital")
my_map