2012-09-18 111 views
0

如果當時沒有互聯網連接 - 程序無法執行遠程腳本並創建谷歌對象。後來我試圖重新加載谷歌地圖這樣的腳本:動態加載谷歌地圖

if($.isEmptyObject(google)) { 
    $.getScript('https://www.google.com/jsapi?sensor=true', function() { 
     google.load("maps", "3");      
    });    
} 

我得到這個類型的消息:Google Maps API server rejected your request. within the sensor parameters must be set to true or false.爲什麼呢?

回答

1

這個工作對我來說:

if($.isEmptyObject(google)) { 
    $.getScript('https://www.google.com/jsapi', function() { 
    google.load("maps", "3", {'other_params' : 'sensor=true' });      
    });    
} 
+0

我想我不得不提到我發展與PhoneGap的和jQuery Mobile的移動應用程序。測試環境 - 紋波仿真器。但是現在我在頁面加載後變成空白的白頁。 –

+0

Ripple仿真器中是否有錯誤控制檯? – wroniasty

+0

不是。它是Chrome應用。所以,基本上,你可以使用chromes控制檯。 –