Google Maps API使用异步延迟的说明

时间:2018-08-19 22:09:21

标签: javascript deferred-loading

我试图了解https://developers.google.com/maps/documentation/javascript/tutorial的代码段中<script>元素的加载:

<!DOCTYPE html>
<html>
  <head>
    <title>Simple Map</title>
    <meta name="viewport" content="initial-scale=1.0">
    <meta charset="utf-8">
    <style>
      /* Always set the map height explicitly to define the size of the div
       * element that contains the map. */
      #map {
        height: 100%;
      }
      /* Optional: Makes the sample page fill the window. */
      html, body {
        height: 100%;
        margin: 0;
        padding: 0;
      }
    </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=YOUR_API_KEY&callback=initMap"
    async defer></script>
  </body>
</html>

大概google.maps.Map对象是在后者的script中定义的。但是,该脚本具有async defer属性,根据https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script,这意味着它将在文档解析后异步执行。但是,由于这是在第一个script之后出现的,因此第一个script怎么能在加载定义之前实例化一个Map

1 个答案:

答案 0 :(得分:0)

要将Charlie的评论转换为答案,请在Google Maps API &callback=initMap末尾的src确保在Google Maps完成加载后调用initMap函数。