28 November 2017

This is the 1st interactive Map

# Loading libraries
library(leaflet)
## Warning: package 'leaflet' was built under R version 3.4.2

The map is of the place that I would be travelling to on 4th December

# 
mymap <- addTiles(leaflet())

mymap <- mymap %>%
            addMarkers(lat = 8.7139, lng = 77.7567,popup = "Sourav is here ")
mymap