R Markdown

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!

Create map for the Dresden, Germany 51.050407, 13.737262

library(leaflet)
map <- leaflet() %>% addTiles()   
map <- map %>% addMarkers(lat=51.050407, lng=13.737262, popup="The most beautiful city in the world!")
map