2016-05-22 47 views
0

任何時候我嘗試在散景中繪製GMapPlot,我會在地圖本身周圍獲得一個巨大的邊框。這可以刪除嗎?我似乎無法找到這樣做的選擇。如何從散景GMap圖中刪除邊框?

這裏是我的意思視覺例如:

enter image description here

MWE:

from bokeh.io import output_file, show 
from bokeh.models import GMapPlot, GMapOptions, DataRange1d, ColumnDataSource, Circle, PanTool, HoverTool 

map_options = GMapOptions(lat=40.7484, lng=-73.9857, map_type = "terrain", zoom=10) 

GMap = GMapPlot(x_range = DataRange1d(), y_range = DataRange1d(), map_options = map_options , title = "Eneumerate", 
      plot_width=800, plot_height=300) 

回答