Introduction

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.

Data Sources

The latitude and longitude were taken from Google

Packages

library(leaflet)
## Warning: package 'leaflet' was built under R version 4.2.3

Map of Mumbai, India: pinpointing The Gateway of India

map <- leaflet() %>% addTiles() %>% 
addMarkers(lat= 18.9220, lng= 72.8347, popup = "Mumbai, India")
map