Create a web page using R Markdown that features a map created with Leaflet.
library(leaflet) m<-leaflet() %>% addTiles() %>% addMarkers(lng = 121.609, lat = 38.912, popup = "My living city") m