为什么我在尝试使用 StageWebView 在 AIR Android 应用程序中实现 Google Maps JavaScript API 时"InvalidValueError"出现错误?



我正在开发一个AIR Android应用程序,我需要在其中实现地图。环顾四周后,我决定使用Google Maps API for Javascript和StageWebView类。当我运行项目时,出现此错误:

InvalidValueError: initMap is not a function
    at https://maps.googleapis.com/maps/api/js?     key=XXXXXXXXXX%20%20%20%20%20%20%20%20&libraries=visualization&callback=initMap : 87
 at https://maps.googleapis.com/maps/api/js?key=XXXXXXXXXX%20%20%20%20%20%20%20%20&libraries=visualization&callback=initMap : 123
 at https://maps.googleapis.com/maps/api/js?key=XXXXXXXXXX%20%20%20%20%20%20%20%20&libraries=visualization&callback=initMap : 21
 at https://maps.googleapis.com/maps/api/js?key=XXXXXXXXXX%20%20%20%20%20%20%20%20&libraries=visualization&callback=initMap : 123

这是 HTML:

<!DOCTYPE html>
<html>
  <head>
    <style type="text/css">
      html, body { height: 100%; margin: 0; padding: 0; }
      #map { height: 100%; }
    </style>
  </head>
  <body>
    <div id="map"> </div>
    <script async defer
        src="https://maps.googleapis.com/maps/api/js?key=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
        &libraries=visualization&callback=initMap">
    </script>
    <script src="map.js"> </script>
  </body>
</html>

JS:

function initMap() {
  var map = new google.maps.Map(document.getElementById('map'), {
    center: {lat: 0, lng: 0},
    zoom: .3,
    styles: [{
      featureType: 'poi',
      stylers: [{ visibility: 'off' }]  // Turn off points of interest.
    }, {
      featureType: 'transit.station',
      stylers: [{ visibility: 'off' }]  // Turn off bus stations, train stations, etc.
    }],
    disableDoubleClickZoom: true
  });
     map.addListener('click', function(e) {
  var marker = new google.maps.Marker({
    position: {lat: e.latLng.lat(), lng: e.latLng.lng()},
    map: map
  });
console.log(e.latLng.lat(), e.latLng.lng());
});
}

AS3:

var webView:StageWebView;
var file:File = File.applicationDirectory.resolvePath("gmaps/gmaps.html");
var mapURL:String = file.nativePath;
webView = new StageWebView();
webView.stage = stage;
webView.viewPort = new Rectange(0, 0, stage.stageWidth, stage.stageHeight);
webView.loadURL(mapURL);

注意:在 chrome 中运行 gmaps.html 文件可以完美运行。

那么,问题出在哪里呢?我真的说不出来,因为我没有 JS/HTML 的经验。我确实尝试过谷歌,但这也让我无处可去。任何帮助都非常感谢

如果你尝试调用map.js在脚本异步应答之前。

它会工作

谢谢。

相关内容

  • 没有找到相关文章

最新更新