Gmaps没有出现在Spyder中

问题描述 投票:0回答:1

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

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)

google-maps anaconda spyder python-3.7
1个回答
0
投票

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

© www.soinside.com 2019 - 2024. All rights reserved.