The following page is a map guide for the street arts lovers that wish to admire Banksy’s work in paris.
## Warning: package 'leaflet' was built under R version 3.5.2
The vandalized little girl
Dog amputated by his master
Veiled Napoleon
Self-Portrait?
Rat catapulted by the bottle of champagne
Minnie Mouse
Grieving Bataclan
Rats admiring the Eiffel Tower
df = data.frame(lat = c(48.898730, 48.848310, 48.893160, 48.861360, 48.887850, 48.850380, 48.863110,48.852575 ), lng = c(2.360280,2.342640,2.379870,2.353240,2.341590,2.349060,2.370870, 2.281422), popup = c("The vandalized little girl", "Dog amputated by his master", "Veiled Napoleon", "Self-Portrait?", "Rat catapulted by the bottle of champagne
", "Minnie Mouse", "Grieving Bataclan", "Rats admiring the Eiffel Tower"))
df %>% leaflet() %>% addTiles() %>% addMarkers(popup = df$popup)
## Assuming "lng" and "lat" are longitude and latitude, respectively