1

我刚刚在谷歌开发者网站上偶然发现了这段代码,复制粘贴它来测试告诉我它不需要谷歌的 API 访问密钥来工作。

<script>
  function initialize() {
    var mapOptions = {
      zoom: 8,
      center: new google.maps.LatLng(-34.397, 150.644),
      mapTypeId: google.maps.MapTypeId.ROADMAP
    };

    var map = new google.maps.Map(document.getElementById('googlemaps'),
        mapOptions);
  }

  function loadScript() {
    var script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = 'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&' +
        'callback=initialize';
    document.body.appendChild(script);
  }

  window.onload = loadScript;
</script>

我知道 Google 每天有 25K API 调用的限制,所以我在做违法的事情吗?

4

0 回答 0