4

我正在编写一个使用 PhoneGap 并需要在其中集成 Google Maps 的应用程序。我使用了 Google 提供的在线文档中的这个示例:

   <!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <style type="text/css">
      html { height: 100% }
      body { height: 100%; margin: 0; padding: 0 }
      #map_canvas { height: 100% }
    </style>
    <script type="text/javascript"
      src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDlFl3vPEbgzrr-1KX5E20z_1DowB2ASus&sensor=true">
    </script>
    <script type="text/javascript">
      function initialize() {
        var mapOptions = {
          center: new google.maps.LatLng(-34.397, 150.644),
          zoom: 8,
          mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        var map = new google.maps.Map(document.getElementById("map_canvas"),
            mapOptions);
      }
    </script>
  </head>
  <body onload="initialize()">
    <div id="map_canvas" style="width:100%; height:100%"></div>
  </body>
</html>

如果我在我的网络浏览器(Chrome、FF、IE ...)中打开它,它可以正常工作。但是,在我的模拟器(以及设备)中,它只显示一个空白页。有小费吗?

4

1 回答 1

6

因为我在同一个应用程序上使用多个 html 页面,所以出现了这个问题。由于 phonegap 将使用 ajax 调用来替换索引页面的 dom,因此它也无法在这些页面上加载脚本。

这里有两种解决方案:

  1. 仅使用单个 html 页面
  2. 加载第二页使用

    相对=“外部”

于 2012-11-08T00:18:51.960 回答