2012-01-17 58 views
4

我們在(電話峽使用JQuery Mobile)的基於位置的應用程序這是應該加載谷歌地圖顯示的地點的位置的標記。第一次加載後,地圖不刷新。我想根據地址顯示不同的位置。JQuery的手機:不能更新谷歌地圖

即使我使用死亡,直播似乎也不會解除綁定。

這是代碼。

function loadMap(indexClicked){ 
    var offerPosition = getLatAndLong(indexClicked); 
    var centerSettings = { 'center': offerPosition, 'zoom': 10 }; 
    initMap(centerSettings,indexClicked); 
    refreshMap(); 
} 

function initMap(centerSettings,indexClicked){ 
    $('#load-map').live('pageshow', function() { 
    $('#map-canvas').gmap({'center': centerSettings.center, 'zoom': centerSettings.zoom, 'disableDefaultUI':true, 'callback': function() { 
     var self = this; 
     self.addMarker({'position': this.get('map').getCenter() }).click(function() { 
      self.openInfoWindow({ 'content': showAdrressInMap(indexClicked) }, this); 
     }); 
    }}); 
    }); 
} 

function refreshMap(){ 
    $('#load-map').live('pageshow', function() { 
    $('#map-canvas').gmap('refresh'); 
    }); 
} 

在每次點擊按鈕時調用loadMap函數。

PS:第一次加載後,地圖似乎得到緩存並且每次都返回相同的地址。點擊標記時,刷新工具提示中的地址,但位置似乎相同。我使用jQuery Mobile的1.0與手機的差距與jquery.ui.map.js,jquery.ui.map.services.js,jquery.ui.map.extensions.js和modernizr.min.js

+0

同樣的問題'點擊標記時,它會刷新工具提示中的地址,但位置似乎相同。請提供答案... – 2012-11-01 07:03:26

回答

0
1.3.0沿

您可以使用以下方法來清除標記,添加新標記並動態設置jQuery-ui-map的中心位置。

//clear all markers 
$('#map_canvas').gmap('clear', 'markers'); 

// add a new marker 
var $marker = $('#map_canvas').gmap('addMarker', {id: i, 'position': new google.maps.LatLng(cityList[i][1], cityList[i][2]), title: cityList[i][0]}); 

// on marker click show the description 
$marker.click(function() { 
    $('#map_canvas').gmap('openInfoWindow', {'content': cityList[this.id][0]}, this); 
}); 

// update the map's center position    
$("#map_canvas").gmap("get", "map").panTo(new google.maps.LatLng(cityList[i][1], cityList[i][2])); 

根據Google Maps documentation,所述panTo方法平移通過必要以包含指定的LatLngBounds的最小量的地圖。它不能保證在地圖上邊界的位置,除了儘可能多的邊界是可見的。如果邊界存在於地圖上,邊界將位於由地圖類型和導航(平移,縮放和街景)控件包圍的區域內。如果邊界大於地圖,則地圖將被移動以包含邊界的西北角。如果地圖位置的變化小於地圖的寬度和高度,則過渡將平滑動畫。

下面你可以找到一個樣本。如果按芝加哥按鈕,將添加一個標記,地圖的中心位置將更新到芝加哥

<!doctype html> 
<html lang="en"> 
    <head> 
     <title>jQuery mobile with Google maps - Google maps jQuery plugin</title> 
     <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" /> 
     <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script> 
     <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script> 
     <script type="text/javascript" src="http://maps.google.com/maps/api/js?v=3&sensor=false&language=en"> </script> 
     <script type="text/javascript" src="http://jquery-ui-map.googlecode.com/svn/trunk/ui/min/jquery.ui.map.min.js"></script> 
     <script type="text/javascript"> 

      var mobileDemo = { 'center': '41,-87', 'zoom': 7 }, 
       cityList = [ 
        ['Chicago', 41.850033,-87.6500523, 1], 
        ['Kentucki', 37.735377,-86.572266, 2] 
       ]; 

      function initialize() 
      { 
       $('#map_canvas').gmap({ 'center': mobileDemo.center, 'zoom': mobileDemo.zoom, 'disableDefaultUI':false }); 
      } 

      function addMarker(i) 
      { 
       //clear all markers 
       $('#map_canvas').gmap('clear', 'markers'); 

       // add a new marker 
       var $marker = $('#map_canvas').gmap('addMarker', {id: i, 'position': new google.maps.LatLng(cityList[i][1], cityList[i][2]), title: cityList[i][0]}); 

       // on marker click show the description 
       $marker.click(function() { 
        $('#map_canvas').gmap('openInfoWindow', {'content': cityList[this.id][0]}, this); 
       }); 

       // set the map's center position 
       $("#map_canvas").gmap("get", "map").panTo(new google.maps.LatLng(cityList[i][1], cityList[i][2])); 
      } 

      $(document).on("pageinit", "#basic-map", function() { 
       initialize(); 
      }); 

      $(document).on('click', '.add-marker', function(e) { 
       e.preventDefault(); 
       addMarker(this.id); 
      }); 
     </script> 
    </head> 
    <body> 
     <div id="basic-map" data-role="page"> 
      <div data-role="header"> 
       <h1><a data-ajax="false" href="/">jQuery mobile with Google maps v3</a> examples</h1> 
       <a data-rel="back">Back</a> 
      </div> 
      <div data-role="content"> 
       <div class="ui-bar-c ui-corner-all ui-shadow" style="padding:1em;"> 
        <div id="map_canvas" style="height:350px;"></div> 
       </div> 
       <a href="#" id="0" class="add-marker" data-role="button" data-theme="b">Chicago</a> 
       <a href="#" id="1" class="add-marker" data-role="button" data-theme="b">Kentucki</a> 
      </div> 
     </div>  
    </body> 
</html> 

我希望這會有所幫助。

+0

我必須使用$('#map_canvas').gmap('destroy')並用新標記位置重新創建它,並且它可以工作。清除舊的標記和設置不起作用.... – 2012-11-07 08:08:17