下記サイトの「urllibを使って特定の座標周辺の地図を画像として保存」を参考にプログラムを構築しました。html1とhtml2の部分を書き換え、google api key を入れたのですが、GeocoderError: Error OVER_QUERY_LIMITと表示されてしまいます。
まだ一度もstack map apiを利用していません。
改善策をお願いします。
助けて下さい。

https://www.robotech-note.com/entry/2016/12/21/213024

エラーコード

File "<ipython-input-2-e038d4def69f>", line 1, in <module>
    runfile('/Users/name/map.py')

  File "/Users/name/anaconda3/envs/python35/lib/python3.6/site-packages/spyder_kernels/customize/spydercustomize.py", line 668, in runfile
    execfile(filename, namespace)

  File "/Users/name/anaconda3/envs/python35/lib/python3.6/site-packages/spyder_kernels/customize/spydercustomize.py", line 108, in execfile
    exec(compile(f.read(), filename, 'exec'), namespace)

  File "/Users/name/map.py", line 19, in <module>
    results = Geocoder.geocode(address)

  File "/Users/name/anaconda3/envs/python35/lib/python3.6/site-packages/pygeocoder.py", line 129, in geocode
    return GeocoderResult(Geocoder.get_data(params=params))

  File "/Users/name/anaconda3/envs/python35/lib/python3.6/site-packages/pygeocoder.py", line 212, in get_data
    raise GeocoderError(response_json['status'], response.url)

GeocoderError: Error OVER_QUERY_LIMIT
Query: https://maps.google.com/maps/api/geocode/json?address=%E5%A4%A7%E9%98%AA%E5%9F%8E&sensor=false&bounds=&region=&language=&components=

pythonコード

from pygeocoder import Geocoder
import urllib

def download_pic(url,filename):
    img = urllib.urlopen(url)
    localfile = open( "./" + str(filename) + ".png" , 'wb')
    localfile.write(img.read())
    img.close()
    localfile.close()

address = '大阪城'
results = Geocoder.geocode(address)
print(results[0].coordinates)

result = Geocoder.reverse_geocode(*results.coordinates, language="ja")
print (result)

html1 = "https://maps.googleapis.com/maps/api/staticmap?center=34.687315,135.526201"
html2 = "&maptype=hybrid&size=640x480&sensor=false&zoom=18&markers=34.687315,135.526201"
html3 = "&key=APIKey&signature=signaturekey"

axis = str((results[0].coordinates)[0]) + "," + str((results[0].coordinates)[1])

html = html1 + axis + html2 + axis + html3

print (html)

download_pic(html,address)

試したこと
google stack map api の使い方をグーグルのサイトで確認しましたところ、署名キーも入れましたし、料金設定も行い、使用条件は満たしていると思います。何かアドバイスお願いします。