Gmaps没有显示在Spyder中

时间:2019-03-13 09:41:01

标签: google-maps anaconda spyder python-3.7

我正在运行一个简单的示例:

import gmaps
import gmaps.datasets

gmaps.configure(api_key="...")
earthquake_df = gmaps.datasets.load_dataset_as_df( 'earthquakes' ) 
locations = earthquake_df[[ 'latitude' , 'longitude' ]] 
weights = earthquake_df[ 'magnitude' ] 
fig = gmaps.figure() 
fig.add_layer(gmaps.heatmap_layer(locations, weights=weights)) 
fig

但没有看到热图,输出显示了这一点:

Figure(layout=FigureLayout(height='420px'))

我正在使用Spyder(Python 3.7)

1 个答案:

答案 0 :(得分:0)

(此处为 Spyder维护者),原因很简单:Spyder无法在其控制台上显示Web内容。 Web内容是指只能在Web浏览器中呈现的内容。 gmaps包就是这种情况。