谷歌地图v3部分加载在左上角,调整大小事件不起作用

时间:2013-06-12 07:22:10

标签: jquery google-maps google-maps-api-3

Google Maps V3部分加载在左上角。我尝试了以下方法:

  • 在地图初始化后添加google.maps.event.trigger(map, 'resize');

  • 重新排列索引文件中的<script>标记

但没有一个对我有用。如何解决这个问题。是否存在此问题的官方错误和解决方案?

的index.html

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Bootstrap, from LayoutIt!</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <meta name="author" content="">

    <!-- Bootstrap css files -->
    <link href="stylesheets/bootstrap.min.css" rel="stylesheet">
    <link href="stylesheets/bootstrap-responsive.min.css" rel="stylesheet">
    <link href="stylesheets/style.css" rel="stylesheet">
  </head>
  <body>
    <div id="contentbar">
      <div id="dashboard-content" class="contentbar-main">
        Some Content
      </div>
      <div id="summary-content" class="contentbar-main" style="display:none;">
        <div class="container-fluid">
          <div class="row-fluid">
            <div class="span12">
              <div class="row-fluid">
                <div class="span7" id="sidebarid">
                  <p>Responsive web design is an approach, I often call it a mindset, because you have to change the way you think when you're going responsive. The basic idea behind it is: one design to rule them all - no m.domain.com, no touch.domain.com, no 3 separate CSS files, no 7 PSD files for each device or each orientation - just “domain.com” looking the same on desktop, tablet and phone.</p>
                </div>
                <div class="span5" id="contentbarid">
                  <div class="row-fluid">
                    <div class="span12">
                      <input type="button" value="toggle" id="toggle-button">
                      <div id="map-canvas" style="width:100%;height:400px;"></div>
                    </div>
                  </div>
                  <div class="row-fluid">
                    <div class="span12">
                      <p>Responsive web design is an approach, I often call it a mindset, because you have to change the way you think when you're going responsive. The basic idea behind it is: one design to rule them all - no m.domain.com, no touch.domain.com, no 3 separate CSS files, no 7 PSD files for each device or each orientation - just “domain.com” looking the same on desktop, tablet and phone.</p>
                    </div>
                  </div>
                </div>
              </div>
            </div>
          </div>
        </div>
      </div>
      <!-- jQuery scripts -->
      <script type="text/javascript" src="javascripts/jquery.min.js"></script>
      <!-- Bootstrap script -->
      <script type="text/javascript" src="javascripts/bootstrap.min.js"></script>
      <!-- My basic script file-->
      <script type="text/javascript" src="javascripts/my-script.js"></script>
      <!--Google Map server url-->
      <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAngjBDpe4ep15u5dvlnbZbn1ghA5uISZY&sensor=false"></script>
    </body>
  </html>

我-的script.js

var map;
$(document).ready(function(){
  google.maps.visualRefresh = true;
    initializeMap();
});

//Load Map in Summary Tab
function initializeMap() {
  var mapOptions = {
    center: new google.maps.LatLng(-34.397, 150.644),
    zoom: 8,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  map = new google.maps.Map(document.getElementById("map-canvas"),mapOptions);
  google.maps.event.trigger(map, 'resize');
}

7 个答案:

答案 0 :(得分:56)

我之前也遇到过这个问题并通过等待地图的'空闲'状态(即它完成时)然后调用resize来修复它:

google.maps.event.addListenerOnce(map, 'idle', function() {
   google.maps.event.trigger(map, 'resize');
});

答案 1 :(得分:10)

我认为您的地图在创建时是隐藏的:地图嵌套在display:none div上的#summary-content

你应该尝试在之后触发resize事件,而div是可见的,而不是在初始化期间。

事实上,您可以在div显示时调用initializeMap()函数事件,而不是在.ready()函数中调用它。

答案 2 :(得分:4)

我遇到的问题是除了第一个加载的地图以外的所有地图都显示在左上角,地图的其余部分未加载,因此显示为灰色。

抓了我的头一段时间,但设法解决了:

google.maps.event.addListenerOnce(map, 'idle', function() {
       google.maps.event.trigger(map, 'resize');
       map.setCenter(latLng);
    });

感谢Ian Devlin和d.raev这是一个简单的解决方案,只是想表示感谢并分享解决它的代码,因为我无法发表评论或投票!

我用以下方法创建地图后调用了它:

map = new google.maps.Map(document.getElementById("business-location-"+business_username), map_options);

所以如果你遇到这个问题,请把它放在你创建地图的地方!

答案 3 :(得分:2)

Google地图与Bootstrap无法很好地配合使用。尝试将以下CSS添加到地图元素

#map-canvas img {
  max-width: none;
}

Twitter Bootstrap CSS affecting Google Maps

答案 4 :(得分:1)

我刚刚遇到了类似的问题(在动画中展开的容器中加载了地图)

正如@Ian Devlin解决方案的一部分,是在所有可见之后触发resize事件。
第二部分是固定中心(因为它通常在左上角):

google.maps.event.addListenerOnce(map, 'idle', function() {
   google.maps.event.trigger(map, 'resize');
   map.setCenter(center); // var center = new google.maps.LatLng(50,3,10.9);
});

答案 5 :(得分:0)

我知道这是一个相对古老的问题但是,我今天遇到了这个问题并找到了解决方案。它可能(可能不)对人们有所帮助,但是如果您需要显示Google地图,那么如果您在此活动中调用 initilise() 功能并将其延迟从下面的代码中可以看出。

Google Maps API函数 - initialise();

var locationLondon = new google.maps.LatLng(51.508742, -0.120850);
var map;    

    function initialise(location){
        //Object to define properties
        var mapProp = {
            center: locationLondon,
            zoom: 15,
            disableDefaultUI:true,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        var map = new google.maps.Map(document.getElementById("googleMap"),mapProp);

        //Map Marker
        var marker = new google.maps.Marker({
            position: locationLondon,
            map: map
        });

        marker.setMap(map);
    };

我的jQuery事件调用

    $( document ).ready(function(){
        $( '#maps-container' ).hide();
        $( '#card-1 .fa-info-circle' ).click(function(event){
            event.stopPropagation();
            $( '#maps-container' ).delay( 1000 ).fadeIn( 'slow' );
            $( '#map-load' ).delay( 1000 ).fadeOut( 'slow' );
            setTimeout(initialise, 1000);
        });
    });
  • '#map-load'是地图初始加载的预加载器屏幕
  • '#maps-container'是Google地图的容器(#googleMap)

答案 6 :(得分:0)

使用显示格式的pageshow事件。它对我有用。

$(document).on('pageshow','[data-role =“page”] #mapPage',function(){
初始化(); });