我正在尝试使用gmplot在地图上绘制某些项目,我的问题是,由于新的Google API发生了更改,因此它不接受我的API密钥吗?加载输出时,出现“仅用于开发目的”的问题。任何帮助将不胜感激。
import gmplot
gmap = gmplot.GoogleMapPlotter
gmap.apikey = "inserting my API key here"
latitude_list = [ 30.3358376, 30.307977, 30.3216419 ]
longitude_list = [ 77.8701919, 78.048457, 78.0413095 ]
gmap = gmplot.GoogleMapPlotter(30.3184945,
78.03219179999999, 13)
gmap.scatter( latitude_list, longitude_list, '# FF0000',
size = 40, marker = False)
gmap.polygon(latitude_list, longitude_list,
color = 'cornflowerblue')
gmap.draw("path to save .html")
答案 0 :(得分:0)
这对我有用。
gmap = gmplot.GoogleMapPlotter(30.3184945,78.03219179999999,13,apikey =“”)