Creating a web page using R Markdown that features a map created with Leaflet.
Hosting the webpage on RPubs.
library(leaflet) my_map <- leaflet() %>% addTiles() %>% addMarkers(lat=26.373433, lng= -80.101682, popup="My Office") my_map