Google Map API - 未显示标记

时间:2017-12-12 12:15:44

标签: javascript google-maps google-maps-api-3

我正在测试Google Maps API,以及来自该文档的代码不适合我,因为当我对地图没有任何问题时,标记不会显示。

function initMap() {
  var place = {lat: 48.1389729, lng: -1.935302};
  var map = new google.maps.Map(document.getElementById('maps'), {
    zoom: 10,
    center: place
  });
  var marker = new google.maps.Marker({
    position: place,
    map: map,
    visible:true,
    title: "Hi There",
  });
}

在使用回调调用API之前创建该函数。 我错过了什么?

1 个答案:

答案 0 :(得分:0)

在脚本

后添加HTML
<script async defer
    src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap">
    </script>