| calcite_shell_panel | R Documentation |
Shell Panel is a layout container that slots into calcite_shell() via
panel_start or panel_end. It sits adjacent to or on top of the main
content area. Pass a calcite_panel() (typically containing calcite_block()
components) as the default content, and optionally a calcite_action_bar()
in the action_bar slot.
calcite_shell_panel(
...,
collapsed = NULL,
display_mode = NULL,
height = NULL,
message_overrides = NULL,
resizable = NULL,
width = NULL,
action_bar = NULL
)
... |
Default slot content. Typically a single |
collapsed |
When |
display_mode |
Specifies the display mode:
|
height |
Specifies the component's height. |
message_overrides |
Override individual strings used by the component. |
resizable |
When |
width |
Specifies the component's width: |
action_bar |
Content for the |
Shell Panel is the recommended wrapper when placing panels inside
calcite_shell()'s panel_start or panel_end slots. It controls display
mode, width, collapsibility, and action bar placement.
Multiple Shell Panels can be open simultaneously, unlike calcite_sheet().
It does not provide a page-blocking scrim and is not intended to interrupt
the main application workflow.
An object of class calcite_component
calcite_shell(
panel_start = calcite_shell_panel(
calcite_panel(
heading = "Layers",
calcite_block(
heading = "Options",
collapsible = TRUE,
expanded = TRUE
)
)
),
calcite_panel(heading = "Map View")
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.