# Load the leaflet library
library(leaflet)
## Warning: package 'leaflet' was built under R version 4.5.3
# Create the leaflet map
my_map <- leaflet() %>%
  addTiles() %>%  # Add default OpenStreetMap map tiles
  addMarkers(lat = 13.3525, 
             lng = 74.7928, 
             popup = "<b>MIT Manipal</b><br>Udupi, Karnataka")

# Print the map
my_map