), an R package that I authored which provides bindings to multiple js viz libraries. Here is the code that will get you a fullscreen map in your app. Note that you will need to install the `dev` branch of `rCharts` from `github` to be able to use this.
library(shiny)
# devtools::install_github("rCharts", "ramnathv", ref = "dev")
library(rCharts)
runApp(list(
ui = bootstrapPage(
mapOutput("mymap")
),
server = function(input, output, session){
output$mymap <- renderMap({
L1 <- Leaflet$new()
L1$setView(c(39.3199, -76.6167), 10)
L1$tileLayer(provider = 'Stamen.TonerLite')
L1$set(width = 1600, height = 800)
L1
})
}
))