Welcome

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.

Approach / Instructions

Check out beautiful Hull, Massachusetts. Views of the ocean and Hull bay from my back deck.

library(leaflet)
RichsPlace <- c("<a href='www.richardhuebner.com' >Rich's Place</a>")

leaflet() %>% addTiles() %>% addMarkers(lat = 42.273017, lng = -70.863003, popup = RichsPlace)