Create a web page using R Markdown that features a map created with Leaflet.
library(leaflet) my_map <- leaflet() %>% addTiles() %>% addMarkers(lat=22.2830, lng=114.134, popup="My school") my_map