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)
m_map <- leaflet() %>% addTiles()   
m_map <- m_map %>% addMarkers(lat= -0.3677445678, lng=  35.2831423456, popup="Kericho County is home to the best of Kenyan Tea which is renowned worldwide for its taste")
m_map  

Footer