使散景图充满整个屏幕

时间:2019-08-15 09:05:51

标签: bokeh

我正在使用bokeh绘制Google地图,我可以手动设置尺寸,如下所示:

self.plot = gmap(self.api_key, self.map_options, title=title)
self.plot.width = 800
self.plot.height = 300
show(self.plot)

这很好用,但是有没有办法让它用地图填充浏览器,例如某种全屏模式?

1 个答案:

答案 0 :(得分:0)

好的,我知道了。将其发布为答案以防万一。使用gridplot

类似这样:

layout = gridplot([[self.plot]], sizing_mode='stretch_both')