Overview

Create a web page using R Markdown that features a map created with Leaflet. The webpage must contain the date that you created the document, and it must contain a map created with Leaflet.

Does the web page feature a date and is this date less than two months before the date that you’re grading this assignment?

Does the web page feature an interactive map that appears to have been created with Leaflet?

Development of the project

Date of creation

date()
## [1] "Mon Jun 23 11:28:39 2025"

Interactive map

Cities I have visited:

map <- leaflet(width = "100%") %>% addTiles() %>%  
  addMarkers(lat= 41.2853, lng= -70.0988, popup="Nantucket") %>%
  addMarkers(lat= 50.0647, lng= 19.9450, popup="Krakow") %>%
  addMarkers(lat = 42.6977, lng= 23.3219, popup="Sofia") %>%
  addMarkers(lat= 42.1354, lng= 24.7453, popup="Plovdiv")
(map)