This document contains the submission for the first peer graded assignment in the Coursera course of Building Data Products from John Hopkins University.

library(leaflet)

Next we print the date as requested in the rubric of this assignment

Sys.Date()
## [1] "2016-10-10"

Finally we print the coordinates of the location where I live

# Valencia, Spain
my_map <- leaflet() %>% addTiles() %>% addMarkers(lat=39.4697500, lng=-0.3773900, popup="Herminio's City")
my_map