Google 地图 API 异步延迟的使用说明

Explanation of the use of async defer for the Google Maps API

我正在尝试了解 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

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