I created this webpage for the Coursera Developing Data Products course on Coursera.

The Instructions are:

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?

R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.

##Load leaflet package
library(leaflet)
my_map <- leaflet() %>%
  addTiles() %>%
    addMarkers(lat=52.25, lng=21,
      popup="This is where I was born") %>%
    addMarkers(lat=47.55, lng=106.53,
      popup="This is where my wife was born") %>%
    addMarkers(lat=38.88, lng=-77.1,
      popup="This is where my son was born")
my_map