美好的一天!
我想问一下Jupyter中的API密钥。所以我正在用以下代码运行程序:
import pandas as pd
import gmaps #import the gmaps library
import gmaps.datasets #imports the gmaps.datasets library
gmaps.configure(api_key='AIzaSyDJbREZ4Lz-n00DDX42HSHKX936DEYakRA') # Fill in with your API key
earthquake_df = gmaps.datasets.load_dataset_as_df('earthquakes') #equate your raw data to the designated dataset
earthquake_df.head()
locations = earthquake_df[['latitude', 'longitude']] #locate the
weights = earthquake_df['magnitude']
fig = gmaps.figure()
fig.add_layer(gmaps.heatmap_layer(locations, weights=weights))
fig
该程序包含API密钥。但是,输出未按预期显示地图。而是,此错误显示:
使用Google Maps进行身份验证时出错。这可能是因为您没有传递API密钥,或者传递的密钥不正确。检查浏览器控制台,查找以Google Maps API错误开头的错误,然后将消息与Google Maps文档进行比较。
我不知道这到底是怎么了?我的API密钥错误吗?谢谢