Instructions

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. We would love to see you show off your creativity!

## Favorite Downtown Cafe
library(leaflet)
## Warning: package 'leaflet' was built under R version 3.4.4
my_map <- leaflet() %>%
addTiles() %>%
addMarkers(lat=47.600969, lng=-122.332282, 
             popup="Zeitgeist Cafe")
my_map