Place arcgisMapOutput() in a Shiny UI and renderArcgisMap() in the
server.
Usage
arcgisMapOutput(outputId, width = "100%", height = "500px")
renderArcgisMap(expr, env = parent.frame(), quoted = FALSE)Arguments
- outputId
Defines which output variable the map is read from.
- width, height
default
"100%"and"500px". Defines the output size, passed tohtmlwidgets::shinyWidgetOutput().- expr
Defines the expression that generates the map.
- env
default
parent.frame(). Defines whereexpris evaluated.- quoted
default
FALSE. Defines whetherexpris already quoted.