This project was created as part of the Developing Data Products course of the Coursera Data Science Specialization. The goal of the project is to create a web page using R Markdown that features a map created with Leaflet, and to host the resulting web page on either GitHub Pages, RPubs, or NeoCities.
. The latitude and longitude were taken from Google Maps
library(leaflet)
map <- leaflet() %>% addTiles() %>%
addMarkers(lat= 19.076090, lng= 72.877426, popup = "Mumbai, India")
map