リーフレットの地図を表示するアプリを作ろうとしています。アプリを使用するユーザーは主にモバイルデバイスからアプリを使用するため、画面全体に地図を表示すると便利です。 leafletOutput("mymap", width = "100%", height = "100%")
に、しかし、私は設定できない高さをhttps://js1984.shinyapps.io/stackoverflow/R光沢のリーフレット:リーフレットの高さの100%
それはleafletOutput("mymap", width = "100%")
と幅のために正常に動作します: あなたはここにアプリを見ることができ、私はアプリを実行したときにマップが表示されなくなります...固定値作品に高さを設定しますあなたは想像しているようにオプションではありません。私がこれまでに見つかった
すべてのソリューションは、私のために動作しませんでした:設定の高さのように:100%CSSで:
ui <- navbarPage(title = "test",
collapsible = T,
position= "static-top",
inverse = T,
#####################################
# the tab panel that includes the MAP
#####################################
tabPanel("Map",
includeCSS(path="www/bootstrap.css"),
leafletOutput("mymap", width = "100%")
),
#####################################
# other tab panels
#####################################
tabPanel("Fri",
fluidRow(
includeCSS(path="www/bootstrap.css"),
column(6,
offset = 3,
wellPanel(
checkboxGroupInput("freitag",
h3("Freitag"),
list_fr,
selected = 1
)
)
)
)
),
tabPanel("Sat",
fluidRow(
column(6,
offset = 3,
wellPanel(
checkboxGroupInput("samstag",
h3("Samstag"),
list_sa
)
)
)
)
),
tabPanel("Sun",
fluidRow(
column(6,
offset = 3,
wellPanel(
checkboxGroupInput("sonntag",
h3("Sonntag"),
list_so
)
)
)
)
),
tabPanel("Mon",
fluidRow(
column(6,
offset = 3,
wellPanel(
checkboxGroupInput("montag",
h3("Montag"),
list_mo
)
)
)
)
),
tabPanel("Tues",
fluidRow(
column(6,
offset = 3,
wellPanel(
checkboxGroupInput("dienstag",
h3("Dienstag"),
list_di
)
)
)
)
)
)
私が知る限り、両方の属性(高さと幅)を%に設定することはできません。 – Stophface
実際には、[Superzip](http://shiny.rstudio.com/gallery/superzip-example.html)に実装されています。しかし、私はどのようにも理解できませんでした。 –
しかし、とにかく、ここには[解決策]です(http://stackoverflow.com/questions/36469631/how-to-get-leaflet-for-r-use-100-of-shiny-dashboard-height?rq=1)。 )。 –