As part of the Data Science course, Developing Data Products, we are asked to create an interactive map using the R package leaflet.
This is for the Week #2 Assignment.
library(leaflet)
RichsPlace <- c("<a href='www.richardhuebner.com' >Rich's Place</a>")
leaflet() %>% addTiles() %>% addMarkers(lat = 42.273017, lng = -70.863003, popup = RichsPlace)