Leaflet Assignment

Here is a map produced with Leaflet on 7-17-2020

library(leaflet)

BostonMap <- leaflet() %>% 
  addTiles() %>%
  addMarkers(lat = 42.3601, lng = -71.0589,
              popup="Boston, my hometown")
BostonMap