Where in the world is New York?

library(leaflet)

my_map <- leaflet() %>%
        addTiles()%>%
        addMarkers(lat = 40.730610, lng = -73.935242,
          popup = "New York, NY")
my_map

Now, you can zoom in and out of New York by using your mouse, or by clicking on the [+] or [-] sign on the upper left hand corner of the map.

That concludes this assignment.

Thank you!