1

ユーザーから非表示の div にルート案内を含む Google マップ (v3) をロードすると、結果のマップがズームされず、正しく中央に配置されません。イベントを発生させようとしresizeましたが、問題は部分的にしか解決しませんでした。

通常、道順を含むマップをロードするとき、API は自動的に最適なビュー (ズーム レベルと中心) を見つけて、移動全体を表示します。私が間違っていることはありますか?

JsFiddleを参照してください

<button id="show">Show</button>
<div id="a">
   <div id="map_wrapper" style="display:none">
      <div id="map_canvas" style="height: 354px; width:713px;"></div>
   </div>
  <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&callback=initialize"></script>
  <script>
  var directionsService,
      directionsDisplay,
      map;

    function initialize() {

      directionsService = new google.maps.DirectionsService();
      directionsDisplay = new google.maps.DirectionsRenderer(); 
      var mapOptions = { mapTypeId: google.maps.MapTypeId.ROADMAP, disableDefaultUI: true }
      map = new google.maps.Map(document.getElementById('map_canvas'), mapOptions);
      directionsDisplay.setMap(map);

      var start = 'New York, NY';
      var end = 'Chicago, IL';
      var request = { origin: start, destination: end, travelMode: google.maps.DirectionsTravelMode.DRIVING };
      directionsService.route(request, function(response, status) {
        if (status == google.maps.DirectionsStatus.OK) {
        directionsDisplay.setDirections(response);
        }
      });
    }
  </script>
</div>

そしてJavaScript:

$(document).ready(function(e) {
    $('#show').on('click', function() {
        $('#map_wrapper').show();
        google.maps.event.trigger(map, "resize");
    });
});
4

3 に答える 3

0

ボタンクリック後にマップを初期化できます:コールバックを削除initialize()し、ボタンクリックですべてを削除します。http://jsfiddle.net/mB6AZ/2/

于 2013-01-10T17:24:02.390 に答える
0

DirectionsRoute LatLngBounds のコピーを保存し、サイズを変更したら、マップをそれらの境界に合わせます。

ワーキングデモ

var bounds;

directionsService.route(request, function (response, status) {
    if (status == google.maps.DirectionsStatus.OK) {
      directionsDisplay.setDirections(response);
      bounds = response.routes[0].bounds;
    }
});

$(document).ready(function (e) {
  $('#show').on('click', function () {
    $('#map_wrapper').show(0, function () {
      // this will fire once the map resize completes
      google.maps.event.addListenerOnce(map, 'idle', function () {
        this.fitBounds(bounds);
      });
      google.maps.event.trigger(map, "resize");
    });
  });
});
于 2013-01-10T18:03:21.410 に答える
0

次のように ready-function を変更します。

$(document).ready(function(e) {
        $('#show').on('click', function() {
            $('#map_wrapper').show();
            google.maps.event.addListenerOnce(map, "resize",function(){
              try{this.fitBounds(directionsDisplay.getDirections().routes[0].bounds)
              }catch(e){}
            });
            google.maps.event.trigger(map, "resize");
        });
      });

ルートがマップ内で使用可能な場合、マップの境界をルートの境界に設定します。

デモ: http://jsfiddle.net/doktormolle/c2pC3/

于 2013-01-11T01:04:01.303 に答える