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!

Map

df <- data.frame(
  lat = runif(min = 34.8, max= 34.9, n= 10),
  lng = runif(min = -92.4, max= -92.3, n=10)
)
messages <- c(rep("Guess where am I hiding?",9),"You find me!")
df %>% leaflet() %>% addTiles() %>% addCircles(radius = 600, weight=10) %>% addMarkers(popup = messages) 

Try to find me in the map :)