This webpage was created using R Markdown and includes an interactive Leaflet map. The date above is automatically generated to meet the assignment requirement.
##Interactive Leaflet Map
Below is a map marking Chiniot, Lahore, and Gujranwala in Punjab, Pakistan.
leaflet() %>%
addTiles() %>%
addMarkers(lng = 72.9784, lat = 31.7196, popup = "Chiniot") %>%
addMarkers(lng = 74.3587, lat = 31.5204, popup = "Lahore") %>%
addMarkers(lng = 74.1230, lat = 32.1617, popup = "Gujranwala") %>%
setView(lng = 73.8, lat = 31.9, zoom = 8)