Background

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!

Assignment:

library(leaflet)
## Warning: package 'leaflet' was built under R version 4.1.2
m_map <- leaflet() %>% addTiles()   
m_map <- m_map %>% addMarkers(lat= 16.691307, lng= 74.244865, popup="Kolhapur, The city of love and good food")
m_map