Interactive Maps with leaflet in R
Rich Majerus
Vice President of Strategy & Planning, Queens University of Charlotte
htmlwidgets package


library(leaflet)
leaflet() %>%
addTiles()

leaflet() %>%
addProviderTiles("CartoDB") %>%
addMarkers(lng = dc_hq$lon,
lat = dc_hq$lat,
popup = dc_hq$hq)

Interactive Maps with leaflet in R