最近几天,我在localhost上测试了Google Maps JS Api而没有任何问题。从今天起我开始收到错误
UrlAuthenticationCommonError:https://developers.google.com/maps/faq#errorcodes
坦率地说,甚至没有在该URL上描述此错误。我的猜测是使用Url身份验证(我知道,我是天才)。我将localhost包含在允许的引荐来源中。错误仍然存在。
比我在azure上传网站。在允许的推荐人中包含的网址仍然没有。同样的错误一次又一次。
不幸的是谷歌不是很有帮助。
以防这是代码。从演示页面直接复制/过去。相同的代码昨天正在运作,但不是今天
function init(params) {
var mapOPtions = {
center: { lat: -34.397, lng: 150.644},
zoom:8
}
var map = new google.maps.Map(document.getElementById("map"), mapOPtions)
}
<html>
<head>
<title>Proto Wars</title>
<style>
html, body, #map { height: 100%; margin: 0; padding: 0;}
</style>
</head>
<body>
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC-MmP-PKBmtLOobOynyJQvlBpYzp84Tr0">
</script>
<script src="script.js"></script>
<div id="map" style="background-color: #000"></div>
</body>