Project date-01/21/2019

Creating a web page using R Markdown that features a map created with Leaflet. and Hosting the webpage thus created on RPubs.

Loading the Library.

library(leaflet)

Writing the code for leaflet.

myMap <- leaflet() %>%
  addTiles()
myMap <- myMap %>%
  addMarkers(lat=31.6200, lng=74.8765,
             popup="The Golden Temple")
myMap