diff --git a/R/app_ui.R b/R/app_ui.R index ca46a36..023810e 100644 --- a/R/app_ui.R +++ b/R/app_ui.R @@ -207,12 +207,56 @@ create_ui <- function() { title = "Resources", tabName = "Resources", icon = f7Icon("hammer_fill"), - f7Segment( - f7Button(inputId = "res_beaches", label = "Beaches"), - f7Button(inputId = "res_links", label = "Links"), - f7Button(inputId = "res_restart", label = "Restart") - ), - uiOutput("resources_content") + f7Accordion( + id = "resources_accordion", + f7AccordionItem( + title = "Beaches", + f7Card( + divider = TRUE, + leafletOutput("beach_map"), + footer = p("Source: Environmental Protection Agency") + ), + f7Block( + f7List( + inset = TRUE, dividers = TRUE, strong = TRUE, outline = FALSE, + f7ListItem(title = "EPA Beaches", href = "https://www.epa.gov/beaches", external = TRUE), + f7ListItem(title = "Red Tide Forecast", href = "https://habforecast.gcoos.org/", external = TRUE), + f7ListItem(title = "Healthy Beaches Program", href = "https://fdoh.maps.arcgis.com/apps/instant/nearby/index.html?appid=7106a20597de4bff98cc5ebc7f932047&findSource=0&find=1600%2520Harbor%2520Dr%2520S%252C%2520Venice%252C%2520Florida%252C%252034285&sliderDistance=2", external = TRUE), + f7ListItem(title = "MOTE Beach Conditions", href = "https://visitbeaches.org/beach/6/report/53033", external = TRUE), + f7ListItem(title = "National Hurricane Center", href = "https://www.nhc.noaa.gov/", external = TRUE) + ) + ) + ), + f7AccordionItem( + title = "Services", + f7Block( + f7List( + inset = TRUE, dividers = TRUE, strong = TRUE, outline = FALSE, + f7ListItem(title = "City of Venice", href = "https://www.venicegov.com/", external = TRUE), + f7ListItem(title = "Florida Power & Light", href = "https://www.fpl.com/", external = TRUE), + f7ListItem(title = "Sarasota County", href = "https://www.scgov.net/", external = TRUE), + f7ListItem(title = "Property Appraiser", href = "https://www.sc-pa.com/", external = TRUE), + f7ListItem(title = "Open GIS Portal", href = "https://data-sarco.opendata.arcgis.com/", external = TRUE), + f7ListItem(title = "Waste & Recycling", href = "https://www.venicegov.com/government/public-works/waste-and-recycling", external = TRUE), + f7ListItem(title = "Condo Regulation", href = "https://condos.myfloridalicense.com/", external = TRUE), + f7ListItem(title = "Property Records Search", href = "https://www.sarasotaclerk.com/records/official-records/search-land-records", external = TRUE) + ) + ) + ), + f7AccordionItem( + title = "Docs", + f7Block( + f7List( + inset = TRUE, dividers = TRUE, strong = TRUE, outline = FALSE, + f7ListItem(title = "St. Andrews Covenants", href = "docs/2000_01_01_st_andrews_covenants.pdf"), + f7ListItem(title = "St. Andrews (unrecorded)", href = "docs/2004_06_23_sap_map.pdf"), + f7ListItem(title = "Patios 2", href = "docs/1997_08_12_patios_2_plat.pdf"), + f7ListItem(title = "Patios 3", href = "docs/1998_11_17_patios_3_plat.pdf"), + f7ListItem(title = "Villas 2", href = "docs/1998_09_14_villas_2_plat.pdf") + ) + ) + ) + ) ) ### end tabs---- ),