gpt4 book ai didi

javascript - Google Maps JS 示例未显示

转载 作者:行者123 更新时间:2023-11-30 00:05:37 27 4
gpt4 key购买 nike

<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBlcVddNcJrrifavMfBBHkGhmh8ajmskbU&callback=initMap"
async defer></script>
</body>

我正在尝试从本教程中获取这张 map 以显示在我的 Rails 4 应用程序中。 https://developers.google.com/maps/documentation/javascript/examples/map-simple

有了 API key ,它似乎完全消失了,控制台中没有显示任何消息。

但是没有它显示的 key enter image description here

最佳答案

这对我有用

<!DOCTYPE html>
<html>
<head>
<title>Simple Map</title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
#map {
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center: {lat: -34.397, lng: 150.644},
zoom: 8
});
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBlcVddNcJrrifavMfBBHkGhmh8ajmskbU&callback=initMap"
async defer></script>
</body>
</html>

无论如何也要为 map 容器添加一个宽度

     #map {
height: 100%;
width: 100%;
}

关于javascript - Google Maps JS 示例未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38662789/

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