gpt4 book ai didi

javascript - Google map V3 拒绝我的请求

转载 作者:行者123 更新时间:2023-11-28 02:04:18 24 4
gpt4 key购买 nike

我试图在浏览器中加载谷歌地图,但它一直说

Google Maps API 服务器拒绝了您的请求。请求中指定的“sensor”参数必须设置为“true”或“false”。

我的代码可能有什么问题?

 <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<style type="text/css">
html { height: 100% }
body { height: 100%; margin: 0; padding: 0 }
#map-canvas { height: 100% }
</style>

<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDHlCzPPFeUds2erogWbvRZreRC3PX-BJE&sensor=FALSE">
</script>

<script type="text/javascript">
function initialize() {
var mapOptions = {
center: new google.maps.LatLng(-34.397, 150.644),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>

</head>
<body>
<div id="map-canvas">

</div>

</body>
</html>

最佳答案

我在这里有点困难,但是你尝试过将其更改为https://maps.googleapis.com/maps/api/js?key=AIzaSyDHlCzPPFeUds2erogWbvRZreRC3PX-BJE&sensor=false<-- 小案例

关于javascript - Google map V3 拒绝我的请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17991992/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com