library(shiny) library(rMaps) library(rCharts) library(ggmap) library(markdown) navbarPage(title = "Ebola Trial Locations", # Use a customized bootstrap theme theme = 'bootstrap.css', collapsable = TRUE, tabPanel("About", includeMarkdown("doc/intro.md")), tabPanel("Map", tags$style('.leaflet {height: 800px;}'), mapOutput('map_all')), navbarMenu("Data", tabPanel("Data (Original)", HTML("

Original Trial Data from WHO

"), downloadButton('dl_ori', 'Download CSV'), HTML("


"), dataTableOutput("data_original") ), tabPanel("Data (Modified)", HTML("

Processed Trial Locations with Lat/Lon Info

"), downloadButton('dl_mod', 'Download CSV'), HTML("


"), dataTableOutput("data_modified") ) ), tabPanel("Code", includeMarkdown("doc/code.md")) )