Welcome!

This page was created on 2025-06-14 as part of an R Markdown and Leaflet exercise. The interactive map below shows a sample location with a custom marker.

Interactive Leaflet Map

library(leaflet)

leaflet() %>%
  addTiles() %>%
  addMarkers(lng = 67.0011, lat = 24.8607, 
             popup = "Welcome to Karachi, Pakistan!")