jdlong,
Sorry about that. Here is the code:
when i deploy my app with this code :
withSpinner(leafletOutput('mymap',height = 700),type = 3,
color = getOption("spinner.color", default = "#d2d9ec"),
color.background = getOption("spinner.color.background",default = "#FFFFFF"))
i got this error message:
Error in value[[3L]](cond) : could not find function "withSpinnert" Calls: local ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous> Execution halted
but when i redeploy app by this code:
shinycssloaders::withSpinner(leafletOutput('mymap',height = 700),type = 3,
color = getOption("spinner.color", default = "#d2d9ec"),
color.background = getOption("spinner.color.background",default = "#FFFFFF"))
i got this message error:
Error in value[[3L]](cond) : could not find function "leafletOutput" Calls: local ... tryCatch -> tryCatchList -> tryCatchOne -> <Anonymous> Execution halted
Thank you,