Peer-graded Assignment: R Markdown and Leaflet

The map below shows my location.

library(leaflet)
my_map <- leaflet() %>% addTiles()
my_map <- my_map %>% addMarkers(lat=12.9716, lng=77.5946, popup="My Location")
my_map