Welcome!

This interactive map shows a few interesting places around the world using the Leaflet library in R. It’s simple, fun, and powerful.

```{r setup, include=FALSE} knitr::opts_chunk$set(echo = TRUE)

library(leaflet)

leaflet() %>% addTiles() %>% addMarkers(lat = 48.8584, lng = 2.2945, popup = “🗼 Eiffel Tower, Paris”)