Welcome to my Leaflet page!
This document was created on 2025-03-25. It features an interactive map created using the Leaflet package for R. Feel free to explore the map below.
# Load the leaflet package
library(leaflet)
# Create an interactive map centered on Tokyo with a marker
leaflet() %>%
addTiles() %>% # Add default OpenStreetMap tiles
setView(lng = 139.7673, lat = 35.6809, zoom = 15) %>% # Center map on Tokyo
addMarkers(lng = 139.7673, lat = 35.6809,
popup = "Welcome to Tokyo!") # Add a marker with a popup