我花了好几个小时试图找出自己的答案,并在网络上搜寻答案,但仍然无法弄清楚。我希望你们中的一个可以花几分钟的时间来帮助我解决这个问题。谢谢!
我正在尝试让Google Maps API元素填充“访问”标签下方的可用空间,以使其能够根据视口大小的变化来调整自身大小。我尝试使用各种高度组合:100%和bootstrap类,但似乎无济于事。
Here is a picture of what I would like it to do.
Here is the link to the site I'm working on.
谢谢!
答案 0 :(得分:0)
library(tidyverse)
data <- mtcars %>%
dplyr::select(disp, mpg, cyl, am) %>%
tidyr::gather(., key = v.facet, value, mpg:cyl)
ggplot(data, aes(disp, value)) +
geom_point() +
facet_wrap(am ~ v.facet, nrow = 1)
只需在div中添加高度即可将内容映射为您的代码