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.

Submission

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

Review criteria

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?