This Report is a assignment of the Developing Data Products Course of Data Science Specialization by Johns Hopkins University on Coursera.
suppressWarnings(library(leaflet))
# Logo Icon
IITGIcon <- makeIcon(iconUrl = "https://upload.wikimedia.org/wikipedia/en/thumb/a/a7/Indian_Institute_of_Technology_Goa_Logo.svg/220px-Indian_Institute_of_Technology_Goa_Logo.svg.png",
iconWidth = 45, iconHeight = 40,
iconAnchorX = 45, iconAnchorY = 40)
# Location- Longitude and latitude
IITGLocation<-data.frame(
lng= 73.9798,lat= 15.4226
)
# Map generation
leaflet(IITGLocation) %>% addTiles() %>% addMarkers(icon=IITGIcon, popup = "College where I studied(Goa, India)")