谷歌地图代码不适用于我的文件,但适用于其他地方



当我将代码放入另一个没有任何其他内容的html文档中时,下面的代码实际工作并显示了具有正确位置和标记的地图(id="map"的div、带有javascript函数和API的脚本(。

现在的问题是,由于某种原因,当我在这个HTML中使用与API工作的谷歌地图完全相同的代码时,地图根本不会显示。

这是我的代码:

<html lang="en" dir="ltr">
<head>
<title>-</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<style>
/* Set the size of the div element that contains the map */
#map {
width: 100%;  /* The width is the width of the web page */
max-width:450px;
}
</style>
<link rel="stylesheet" type="text/css" href="../main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
...
<div class="row">
...
<div class="col-sm-6">
<div id="map"></div>
</div>
</div>
<script>
// Initialize and add the map
function initMap() {
// The location of company
var freshlocation = {lat: 1.337344, lng: 103.912835};
// The map, centered at company
var map = new google.maps.Map(
document.getElementById('map'), {zoom: 7, center: freshlocation});
// The marker, positioned at company
var marker = new google.maps.Marker({position: freshlocation, map: map});
}
</script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=MYAPIKEY&callback=initMap">
</script>
...
</div>
</body>
</html>

我想知道这是否与head中的一些代码有关,例如导入字体或引导程序,或者映射div的位置,例如将映射放入容器或行类中。如有任何帮助,我们将不胜感激。

好的,我已经找到了答案。设置mapdiv的高度解决了这个问题。

相关内容

  • 没有找到相关文章

最新更新