🌍 Introduction

Welcome to my interactive map webpage!
This page was created using R Markdown and features an interactive Leaflet map that displays three world cities.

leaflet() %>%
  addTiles() %>%
  addCircleMarkers(
    # New York, Paris, New Delhi Longitudes
    lng = c(-74.0060, 2.3522, 77.2090),
    # New York, Paris, New Delhi Latitudes
    lat = c(40.7128, 48.8566, 28.6139),
    # Popup labels (3 values)
    popup = c("New York", "Paris", "New Delhi"),
    radius = 8,
    color = "blue",
    fillOpacity = 0.7
  )