Map of Port Hope, ON Canada

Below is a map of Port Hope, ON, showing showing some GeoCache locations in and around Port Hope, ON. If you are in the area, check them out! The measure tool near the top right of the map may be helpful in finding the cache.

Code to produce map

df is the data frame of geo cache coords that I copied from a document of geocache locations published by the town of port hope.

df =  data.frame( 
  lat = c(43+57.020/60, 43+56.947/60, 43+56.977/60, 43+57.063/60, 43+57.103/60,  44+01.433/60, 43+57.200/60, 43+57.378/60, 44+04.315/60, 44+00.456/60, 43+57.801/60 ,43+59.805/60),
  lng = c(-78-17.662/60, -078-17.560/60, -78-17.411/60, -78-17.522/60, -78-17.396/60, -78-17.992/60, -78-18.187/60, -78-19.137/60, -78-28.430/60,  -78-28.430/60, -78+23.304/60 ,-78-20.808/60)
)
suppressPackageStartupMessages(library(leaflet))
m <- 
  df %>% 
  leaflet() %>%
  setView(lng=-78.29 , lat=43.95, zoom = 12)%>%
  addTiles() %>%  # Add default OpenStreetMap map tiles
  addCircles(color = "Purple") %>%
  addLegend(labels =c("Geo Cache Locations in Port Hope, ON"),
            colors="Purple") %>%
  addMarkers(lng=-78.29 , lat=43.95, popup="Downtown Port Hope") %>%
  addProviderTiles("Stamen.Watercolor") %>% 
  addProviderTiles("Stamen.TonerHybrid") %>%
  addMeasure()
  
m  # Print the map