Map

Create a web page using R Markdown that features a map created with Leaflet.

Host your webpage on either GitHub Pages, RPubs, or NeoCities.

Your webpage must contain the date that you created the document, and it must contain a map created with Leaflet.

library(leaflet)
## Warning: package 'leaflet' was built under R version 3.3.3
mymap <- leaflet() %>% addTiles() 
mymap <- mymap %>% addMarkers(lat=24.555059, lng= -81.779984, popup="Key West, FL, USA")
mymap