谷歌地图API,以避免谷歌授权密钥?

时间:2013-03-19 19:05:45

标签: google-api

我在Google开发者网站上偶然发现了这段代码,将其粘贴到测试中告诉我它不需要Google的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调用,所以我做了非法的事情吗?

0 个答案:

没有答案