Create a web page using R Markdown that features a map created with Leaflet.
Host your webpage on either GitHub Pages, RPubs, or NeoCities.
Developed an interactive map with a pin and pop up of my home.
library(leaflet)
my_map <- leaflet() %>%
addTiles() %>%
addMarkers(lat=39.930160, lng=-85.905420, popup = "Home sweet, my home")
my_map