Constructs a widget for displaying solution results. This widget is designed to be used in conjunction with an existing Leaflet Map within a Shiny web application.
Usage
solutionResults(x = list(), width = NULL, height = NULL, elementId = NULL)
Arguments
- x
list
containing Solution objects. Defaults to an empty list object.- width
character
width of the displayed widget. Defaults toNULL
such that the widget is automatically sized.- height
character
width of the displayed widget. Defaults toNULL
such that the widget is automatically sized.- elementId
character
HTML identifier for the widget. Defaults toNULL
.
Examples
# \dontrun{
# run Shiny app to demo the sidebar pane
if (interactive()) {
runExample("solutionResults")
}
# }