Google Maps API error: MissingKeyMapError

一笑奈何 提交于 2019-12-25 18:12:34

问题


I'm getting this error only in the web hosted version of my website and I'm using the Key, It works fine in local! Help please!

<script async src="http://maps.googleapis.com/maps/api/js?=AIzaSyDudFyTGhbU2CvJtJNxdfkPcJfRQnZ1pbTg&libraries=geometry">

回答1:


the API key is not being assigned because you are missing the GET parameter key in the url, in this case '?key='

<script async src="http://maps.googleapis.com/maps/api/js?key=AIzaSyDudFyTGhbU2CvJtJNxdfkPcJfRQnZ1pbTg&libraries=geometry">

If it still doesn't work, check out this guide from Google: https://developers.google.com/maps/documentation/javascript/get-api-key



来源:https://stackoverflow.com/questions/38517094/google-maps-api-error-missingkeymaperror

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!