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
- listcontaining Solution objects. Defaults to an empty list object.
- width
- characterwidth of the displayed widget. Defaults to- NULLsuch that the widget is automatically sized.
- height
- characterwidth of the displayed widget. Defaults to- NULLsuch that the widget is automatically sized.
- elementId
- characterHTML identifier for the widget. Defaults to- NULL.
Examples
# \dontrun{
# run Shiny app to demo the sidebar pane
if (interactive()) {
  runExample("solutionResults")
}
# }