Instructions :

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!

Grading Criteria Overview :

The rubric contains the following two questions:

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?

My Submission :

Below is the map of Sistine Chapel, Rome, Vatican City

Producing map using Leaflet :

library(leaflet)
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
map <- leaflet() %>%
  addTiles() %>%  
  addMarkers(lat=41.9029, lng=12.4545, popup="Sistine Chapel, Rome, Vatican City") 
  map