My Interactive Leaflet Map

This webpage was created on 6/4/2026.

The map below was created using the Leaflet package in R.

leaflet() %>%
  addTiles() %>%
  setView(lng = -73.0877, lat = 41.6032, zoom = 9) %>%
  addMarkers(
    lng = -73.0877,
    lat = 41.6032,
    popup = "Waterbury, Connecticut"
  ) %>%
  addCircleMarkers(
    lng = -72.6734,
    lat = 41.7658,
    radius = 8,
    popup = "Hartford, Connecticut"
  )