The aim is to Create a web page using R Markdown that features a map created with Leaflet.
library(leaflet)
my_map <- leaflet() %>% addTiles() %>% addAwesomeMarkers(lat = 30.0189, lng = 31.4997, popup = "AUC") my_map