Developing Data Products-Week 2-Assignment

Let’s create a map that shows - The Taj Mahal, India

Loading libraries

library(leaflet)

Create the map

taj <- c("<a href= 'http://whc.unesco.org/en/list/252' >Taj Mahal</a>")
leaflet() %>% addTiles() %>% addMarkers(lat=27.1750, lng=78.0422, popup = taj)