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!
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?
Below is the map of Sistine Chapel, Rome, Vatican City
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