我正在运行一个简单的例子:
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)
(Spyder维护者在这里)原因很简单:Spyder无法在其控制台上显示Web内容。网页内容是指只能在网络浏览器中呈现的内容。这就是gmaps
包的情况。