I cant have "full screen" map in my shiny app, because when I used "100%" parameter, the map disappears...
ui <- fluidPage(
leafletOutput("mymap", height = "100%", width = "100%"),
But when I do this
ui <- fluidPage(
leafletOutput("mymap"),
there is no problems, but there is a half with map and a half in blank. And I need it to be full screen
I tried
leafletOutput("mymap", height = 800, width = 1300)
But it is not what I need, because it didnt scale to the window, thats why i preffer the "100%" parameter.