This is a interactive map of route markers that I come across in my daily commute. It includes notes and mental comments about things like busy intersections, distractions, pubs for Friday evening stops, cafes for breakfast options and general takeaway options on the way back home.
Hovering over a waypoint displays what is there e.g. pub, intersection, cafe, etc.
Clicking on a waypoint displays a comment about the waypoint and a personal note on why it is an important waypoint.
Hope you enjoy it.
library(leaflet)
df %>% leaflet() %>%
addTiles() %>%
addMarkers(popup= df$Comment
, label = df$Type)
## Assuming 'lng' and 'lat' are longitude and latitude, respectively