Create a web page using R Markdown that features a map created with Leaflet.
Host your webpage on either GitHub Pages, RPubs, or NeoCities.
I create an interactive map with a pin and pop up of random location.
library(leaflet)
my_map <- leaflet() %>%
addTiles() %>%
addMarkers(lat=52.356977, lng=4.85506, popup = "Home sweet home")
my_map
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?