Google Maps Javascript API v3:google.maps未列入您的应用程序的白名单

时间:2014-07-09 17:40:10

标签: javascript google-maps google-maps-api-3

我正在尝试将Google Maps JavaScript API v3添加到我的应用程序中,但是收到的错误是我的应用未列入白名单。我尝试过以两种方式加载API:

<script type="text/javascript" src="//www.google.com/jsapi"></script>
<script>
google.load('visualization', '1', {packages: ['corechart', 'table']});
google.load("maps", "3", {other_params:'sensor=false', callback: function(){
}});
</script>

以这种方式加载会导致我的应用未列入白名单的错误。我试图在other_parameters中包含密钥但收到相同的错误。 API已在Developer Console中启用。控制台中也启用了相应的引荐来源。

<script type="text/javascript"
      src="https://maps.googleapis.com/maps/api/js?key=...">
    </script>

以这种方式加载会导致对象谷歌无法扩展的错误。

提前感谢您的帮助。 Google Loader的documentation不是最新的,也没有显示加载项中应包含密钥的方式

谢谢

0 个答案:

没有答案