我正在运行一个简单的示例:
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)
答案 0 :(得分:0)
(此处为 Spyder维护者),原因很简单:Spyder无法在其控制台上显示Web内容。 Web内容是指只能在Web浏览器中呈现的内容。 gmaps
包就是这种情况。