0

我想使用最新版本的 JQuery Mobile,但我遇到了问题,因为 Google 地图现在无法使用...

使用 1.0a2 版,谷歌地图工作正常,但现在使用 1.3.1 版,我有一个空白页!

在我的 Html 代码中,我使用了这样的 DIV id="map": div id="map" style="width: 100%; height: 78%;"

标题:

最新代码:

链接 rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
脚本 src="http://code.jquery .com/jquery-1.9.1.min.js">
脚本src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js">

旧代码:

链接 rel="stylesheet" href="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.css" />
脚本 src="http://code.jquery.com /jquery-1.4.4.min.js">
脚本 src="http://code.jquery.com/mobile/1.0a2/jquery.mobile-1.0a2.min.js">

有人可以告诉我有什么问题吗?

谢谢你。

4

2 回答 2

0

您可以通过下载 jquery 文件并给他静态链接来尝试,使用此链接 https://developers.google.com/maps/documentation/staticmaps/ 生成您的谷歌地图代码以在 div 中使用以及有关谷歌地图的其他信息. 我找不到上面这个有任何问题。我使用它时工作正常。

于 2013-05-21T08:10:43.150 回答
0

它也适用于最新JQM版本。试试这个代码作为演示:

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Application</title>

    <meta name="viewport" content="width=device-width, initial-scale=1">

    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />

    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
    <script type="text/javascript" 
        src="https://maps.googleapis.com/maps/api/js?key=**your key**&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);
        }
        google.maps.event.addDomListener(window, 'load', initialize);
    </script>
    <style type="text/css">
      html { height: 100% }
      body { height: 100%; margin: 0; padding: 0 }
      #map-canvas, #map-page { height: 100% }
    </style>
    </head>

    <body>

    <div data-role="page" id="map-page" data-url="map-page">

        <div data-role="header">                
            <h1>Header</h1>                
        </div><!-- /header -->

        <div data-role="content" id="map-canvas">
            <p>Page content goes here.</p>
        </div><!-- /content -->

        <div data-role="footer" data-id="myfooter" class="ui-bar" data-position="fixed">
            <h4>Footer</h4>
        </div><!-- /footer -->

    </div><!-- /page -->

</body>

这里的关键是您应该为您提供一个id并将data-role="page"height 100%与您的map div. 请注意,在我的css

#map-canvas, #map-page { height: 100% }
于 2013-06-04T14:02:33.837 回答