繁体   English   中英

Google Maps API 使用 async defer 的说明

[英]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 Maps API src末尾的&callback=initMap确保在 Google Maps 加载完成后调用initMap函数。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM