Google maps API对象没有方法加载(Phonegap/Android)

Google maps API对象没有方法加载(Phonegap/Android),android,google-maps,cordova,adt,Android,Google Maps,Cordova,Adt,我正在使用GooglePlaces在phonegap应用程序中获取城市列表 我使用的是PhoneGap2.6,在android和IOS上加载和运行GooglePlaces都很好 我已切换到Phonegap 3.3。该应用程序在IOS上运行良好,我可以通过GooglePlaces获得城市列表 但在Android上,我得到以下错误: 02-03 16:49:25.709: E/Web Console(6149): Uncaught TypeError: Object #<Object>

我正在使用GooglePlaces在phonegap应用程序中获取城市列表

我使用的是PhoneGap2.6,在android和IOS上加载和运行GooglePlaces都很好

我已切换到Phonegap 3.3。该应用程序在IOS上运行良好,我可以通过GooglePlaces获得城市列表

但在Android上,我得到以下错误:

02-03 16:49:25.709: E/Web Console(6149): Uncaught TypeError: Object #<Object> has no     
method 'Load' at http://maps.gstatic.com/cat_js/intl/fr_fr/mapfiles/api-
3/15/9/%7Bmain,places%7D.js:50

可能是复制品?那正是它的意思。我的函数被调用了两次。非常感谢。
if(!GMapsloaded) {
  var script = document.createElement('script');
  script.type = 'text/javascript';
  if (document.location.protocol == 'file:') {
     script.src = "http://maps.google.com/maps/api/js?key=MY_KEY&libraries=places&sensor=true&callback=MapApiLoaded";
  } else {
     script.src = "http://maps.google.com/maps/api/js?key=MY_KEY&libraries=places&sensor=false&callback=MapApiLoaded";
  }
  document.body.appendChild(script);
}