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:
library(leaflet)
my_map <- leaflet() %>%
addTiles()
UniTosite <- c("<a href='https://naturali.campusnet.unito.it/do/home.pl'> Dipartimento Scienze della Vita e Biologia dei Sistemi </a>")
my_map <- my_map %>%
addMarkers(lat = 45.065197449023096, lng=7.688543433084193,
popup=UniTosite)
my_map