Interactive Maps with leaflet in R
Rich Majerus
Vice President of Strategy & Planning, Queens University of Charlotte
We will focus on three extras:
addSearchOSM()
- make map searchableaddReverseSearchOSM()
- geocode with a mouse clickaddResetMapButton()
- reset map viewleaflet() %>%
addTiles() %>%
addSearchOSM()
leaflet() %>%
addTiles() %>%
addSearchOSM() %>%
addReverseSearchOSM()
leaflet() %>%
addTiles() %>%
addSearchOSM() %>%
addReverseSearchOSM() %>%
addResetMapButton()
Interactive Maps with leaflet in R