This project is for the Coursera Data Science Specialization’s Developing Data Products course. Its primary objective is to produce a web page through R Markdown that showcases a map generated with Leaflet and subsequently deploy this web page on platforms such as RPubs, etc.
The latitude and longitude were taken from Google
library(leaflet)
## Warning: package 'leaflet' was built under R version 4.2.3
map <- leaflet() %>% addTiles() %>%
addMarkers(lat= 18.9220, lng= 72.8347, popup = "Mumbai, India")
map