Created on July 13, 2026
This webpage contains an interactive map created using the Leaflet package in R.
leaflet() %>%
addTiles() %>%
setView(
lng = 77.2090,
lat = 28.6139,
zoom = 5
) %>%
addMarkers(
lng = 77.2090,
lat = 28.6139,
popup = "New Delhi, India"
)
This map was created using R Markdown and Leaflet. Users can zoom, move around, and click the marker to view information.