1

当我直接打开页面时,地图部分将加载。但是,当我从另一个页面上的链接打开该页面时,地图将不会加载。我看到以前的帖子说脚本不能在 Head 标签中,因为它们不会加载。但是,当我将它们放在该data-role="page"部分中时,它仍然无法加载地图。我的代码如下。提前致谢。

<!DOCTYPE html>    
<html lang="en">         
  <head>             
    <title>Boilerplate              
    </title>             
    <meta charset="utf-8" />             
    <meta name="viewport" content="width=device-width,initial-scale=1" />             
    <link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css" />        
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>        
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>        
<script type="text/javascript" charset="utf-8" src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>        
<script type="text/javascript" charset="utf-8" src="./ui/jquery.ui.map.js"></script>        
<script type="text/javascript">
           $(function() {
             $('#map_canvas').gmap();
           });
            </script>                                                                                   
  </head>         
  <body>             
    <div id="detailpage" data-role="page" data-theme="c" data-add-back-btn="true">                     
      <div data-role="header" data-id="head1" data-position="fixed">  <h1>Header</h1>                 
      </div>  
      <!-- /header -->                 
      <div data-role="content">              
        <hr>          <b>Title Section</b>                                                            
        <hr>              This is a detailed description section where we can insert some content here with                                                 
        <br>              some page breaks in it.                                                 
        <br>                                                 
        <hr>              This section contains details about the businsess and some other controls and forms.             
        <br>            
        <br>            
        <hr>                           
        <div id="map_canvas" style="width:100%;height:250px">                     
        </div>          
      </div>
      <!-- /content -->           
      <div data-role="footer" data-id="foot1" data-position="fixed">                     
        <div data-role="navbar">                                                                                                                  
          <ul>                                                                                                                                    
            <li>                                                                                                                         
            <a href="a.html">D</a>                                                                                                                         
            </li>                                                                                                                                     
            <li>                                                                                                                         
            <a href="b.html">C</a>                                                                                                                         
            </li>                                                                                                                                     
            <li>                                                                                                                         
            <a href="c.html">P</a>                                                                                                                         
            </li>                                                                                                                                    
          </ul>                                                                                           
        </div>                                                                                         
        <!-- /navbar -->           
      </div>  
      <!-- /footer -->             
    </div>         
  </body>    
</html>
4

1 回答 1

0

标头仅在访问的第一个 JQuery Mobile 页面上加载。每个单独页面的脚本都应包含在该data-role="page"页面的 div 中。

此外,您的谷歌地图加载应该看起来像这样。

var latlng = new google.maps.LatLng(lat, lng);
var myOptions = {
     zoom: 12,
     center: latlng,
     mapTypeId: google.maps.MapTypeId.SATELLITE
};

map = new google.maps.Map(document.getElementById("map_canvas"),myOptions);

这是 Google关于 Google Maps API的入门部分。

于 2012-08-14T01:43:23.597 回答