About this page

This page was created on 2026-09-20 using R Markdown, and features an interactive map built with the Leaflet package.

Map

library(leaflet)

my_map <- leaflet() %>%
  addTiles() %>%
  setView(lng = 77.5946, lat = 12.9716, zoom = 12) %>%
  addMarkers(lng = 77.5946, lat = 12.9716,
             popup = "Bengaluru, India")

my_map