R/iniciar_geobox.R

Defines functions iniciar_geobox

Documented in iniciar_geobox

#' Executa o Geobox
#'
#' @param ... A series of options to be used inside the app.
#'
#' @export
#' @importFrom shiny shinyApp
#' @importFrom golem with_golem_options
iniciar_geobox <- function(
  ...
) {
  with_golem_options(
    app = shinyApp(
      ui = app_ui, 
      server = app_server
    ), 
    golem_opts = list(...)
  )
}
brunorzm/geobox documentation built on March 10, 2021, 10:11 a.m.