library(leaflet)
map <- leaflet() %>%
addTiles()
map
Create a link to the site for the Taj Mahal to pull information Map coordinates: 27.1750° N, 78.0422° E
TajMahal <- c("<a href= 'https://www.history.com/topics/taj-mahal' >TajMahal</a>")
leaflet() %>%
addTiles() %>%
addMarkers(lat=27.1750, lng=78.0422, popup = TajMahal)