This website renders an interactive map displaying the locations of 241 bicycle parking racks throughout the city of Toronto. It was created using the Bicycle Parking Racks dataset obtained through the City of Toronto’s Open Data Portal on March 3, 2020 (last refreshed: March 2, 2020).
This map was created using the Leaflet package in R. The map automatically groups nearby bicycle parking racks into clusters, which are divided into smaller clusters as you zoom in on a given area on the map. If you click on an individual marker, you can see its exact address.
data %>% leaflet() %>% addTiles() %>%
addMarkers(popup = data$address, clusterOptions = markerClusterOptions())