Map

This is a map showing where I live (Bangalore) and where I study (Manipal Institute of Technology).

library(leaflet)
## Warning: package 'leaflet' was built under R version 4.4.3
leaflet() %>%
  addTiles() %>%
  setView(lng = 76.0, lat = 14.0, zoom = 5) %>%
  addMarkers(
    lat = 12.9716, lng = 77.5946,
    label = "Bangalore: Place of Residence",
    labelOptions = labelOptions(noHide = TRUE)
  ) %>%
  addMarkers(
    lat = 13.3527, lng = 74.7937,
    label = "Manipal Institute of Technology: College",
    labelOptions = labelOptions(noHide = TRUE)
  )