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!
library(leaflet)
## Warning: package 'leaflet' was built under R version 4.4.2
set.seed(10)
df <- data.frame(lat= runif(30, min = 19.07, max = 28.70), long=runif(30, min = 72.87, max = 77.10))
df %>% leaflet( width = 900) %>% addTiles() %>% addMarkers(clusterOptions = markerClusterOptions(), popup = "Hi")