Chennai Landmarks

Below is an interactive map of Chennai with 5 notable landmarks. - Marina Beach - Fort St, george - Kapaleeshwarar Temple - Goverment Museum - Santhome Cathedral

# Define coordinates for landmarks in Chennai
landmarks <- data.frame(
  name = c("Marina Beach", "Fort St. George", "Kapaleeshwarar Temple", "Government Museum", "Santhome Cathedral Basilica"),
  lat = c(13.0475, 13.0798, 13.0338, 13.0735, 13.0361),
  lng = c(80.2824, 80.2870, 80.2707, 80.2629, 80.2788)
)

# Create the map
m <- leaflet() %>%
  addTiles() %>%
  setView(lng = 80.2707, lat = 13.0827, zoom = 12) %>%
  addMarkers(data = landmarks, ~lng, ~lat, popup = ~name)
m