我正在尝试构建一个显示传单地图的应用程序.那些使用该应用程序的人主要是通过移动设备进行操作 - 因此在整个屏幕上提供地图会很方便.你可以在这里看到这个应用程序:https://js1984.shinyapps.io/stackoverflow/
它适用于宽度leafletOutput("mymap", width = "100%"),但我不能将高度设置为leafletOutput("mymap", width = "100%", height = "100%"):当我运行应用程序时地图将消失...将高度设置为固定值工作正常,但不是您可能想象的选项.
到目前为止我找到的所有解决方案都不适合我:比如在CSS中设置高度:100%:
html, body, #mymap {
height:100%;
width:100%;
padding:0px;
margin:0px;
}
Run Code Online (Sandbox Code Playgroud)
应用程序的UI部分如下所示:
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 = …Run Code Online (Sandbox Code Playgroud) 我正在尝试在 R 中创建一个美人鱼图表。语法似乎很简单 - 但是我还没有找到在没有箭头的情况下在两个形状之间建立线连接的可能性。
在这个例子中:
mermaid("
graph LR
sq1[shape one]-- This can't be a shape. So sad. --> sq2[shape two]
cyr1((circle one))-->cyr2((circle two));
")
Run Code Online (Sandbox Code Playgroud)
在这里,“形状一”和“这不可能是形状”之间的连接是一条线,但是一旦我尝试在两个形状之间使用这种连接,输出就不会构建图表。有什么方法可以实现两个形状之间的线连接?