获取Google Maps v3以调整InfoWindow的高度

时间:2011-03-15 15:46:11

标签: google-maps-api-3 infowindow

当我单击标记并显示InfoWindow时,如果内容的长度超过InfoWindow默认高度(90px),则不会调整高度。

  • 我使用纯文字,没有图片。
  • 我尝试过maxWidth。
  • 我已检查过继承的CSS。
  • 我把我的内容包裹在一个div中 并将我的CSS应用于此,包括 高度。
  • 我甚至试过强迫 InfoWindow用jQuery调整大小 使用domready事件 信息窗口。

我只剩下几根头发。这是我的JS:

var geocoder;
var map;
var marker;

function initialize() {
  geocoder   = new google.maps.Geocoder();
  var latlng = new google.maps.LatLng(41.8801,-87.6272); 
  var myOptions = {
    zoom: 13,
    center: latlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };
  map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}

function codeAddress(infotext,address) {
  geocoder.geocode({ 'address': address }, function (results, status) {
    if (status == google.maps.GeocoderStatus.OK) {
      map.setCenter(results[0].geometry.location);
      var image  = '/path-to/mapMarker.png';
      var infowindow = new google.maps.InfoWindow({ content: infotext, maxWidth: 200 });
      var marker = new google.maps.Marker({
        map: map,
        position: results[0].geometry.location,
        icon: image
      });
      google.maps.event.addListener(marker, 'click', function () { 
        infowindow.open(map, marker); 
      });
    }
  });

}

function checkZipcode(reqZip) {

  if ( /[0-9]{5}/.test(reqZip) ) {

    $.ajax({
      url: 'data.aspx?zip=' + reqZip,
      dataType: 'json',
      success: function(results) {

        $.each(results.products.product, function() {

          var display = "<span id='bubble-marker'><strong>"+this.name+"</strong><br>"+
                        this.address+"<br>"+
                        this.city+", "+this.state+" "+this.zip+"<br>"+
                        this.phone+"</span>";

          var address = this.address+","+
                        this.city+","+
                        this.state+","+
                        this.zip;

          codeAddress(display,address);

        });

      },
      error: function() { $('#information-bar').text('fail'); }
    });

  } else { $('#information-bar').text('Zip codes are five digit numbers.'); }

}

$('#check-zip').click(function() { $('#information-bar').text(''); checkZipcode($('#requested-zipcode').val()); });

initialize();

InfoText和Address来自XML文件的AJAX查询。数据不是问题,因为它总是正确地通过。在检索和格式化数据后调用codeAddress()。

文件中的HTML:

<div id="google_map"> <div id="map_canvas" style="width:279px; height:178px"></div> </div>

我的InfoWindow内容的CSS(没有其他CSS适用于地图):

#bubble-marker{ font-size:11px; line-height:15px; }

5 个答案:

答案 0 :(得分:9)

我终于找到了解决这个问题的有效方案。不像我希望的那样灵活,但它非常好。从根本上说,关键点是:不要使用字符串作为窗口内容,而是使用DOM节点。 这是我的代码:

// this dom node will act as wrapper for our content
var wrapper = document.createElement("div");

// inject markup into the wrapper
wrapper.innerHTML = myMethodToGetMarkup();

// style containing overflow declarations
wrapper.className = "map-popup";

// fixed height only :P
wrapper.style.height = "60px";

// initialize the window using wrapper node     
var popup = new google.maps.InfoWindow({content: wrapper});

// open the window
popup.open(map, instance);

以下是CSS声明:

div.map-popup {
    overflow: auto;
    overflow-x: hidden;
    overflow-y: auto;
}

ps:“instance”指的是 google.maps.OverlayView 的当前自定义子类(我正在扩展)

答案 1 :(得分:2)

只需用div包装你的内容并指定它的高度:<div style="height:60px">...</div>,例如

 myMarker.setContent('<div style="height:60px">' + txt + '</div>');

- 就我而言,这已经足够了。

答案 2 :(得分:1)

您的地图画布太小了。增加<div id="map_canvas">元素的宽度/高度,您应该会自动看到更大的InfoWindows。

那就是说,我在建立的网站上遇到了同样的问题。我通过创建一个包含InfoWindow内容的克隆div,测量div的宽度和高度,然后将InfoWindow内容div设置为具有测量的宽度和高度来解决它。这是我的代码移植到codeAddress函数的中间(另请注意,我从InfoWindow声明中删除了maxWidth: 200):

function codeAddress(infotext,address) {
    geocoder.geocode({ 'address': address }, function (results, status) {
        if (status == google.maps.GeocoderStatus.OK) {
            map.setCenter(results[0].geometry.location);

            // Create temporary div off to the side, containing infotext:
            var $cloneInfotext = $('<div>' + infotext + '</div>')
                .css({marginLeft: '-9999px', position: 'absolute'})
                .appendTo($('body'));

            // Wrap infotext with a div that has an explicit width and height, 
            // found by measuring the temporary div:
            infotext = '<div style="width: ' + $cloneInfotext.width() + 'px; ' +
                'height: ' + $cloneInfotext.height() + 'px">' + infotext + 
                '</div>';

            // Delete the temporary div:
            $cloneInfotext.remove();

            // Note no maxWidth defined here:
            var infowindow = new google.maps.InfoWindow({ content: infotext }); 
            var marker = new google.maps.Marker({
                map: map,
                position: results[0].geometry.location
            });
            google.maps.event.addListener(marker, 'click', function () { 
                infowindow.open(map, marker); 
            });
        }
    });
}

答案 3 :(得分:0)

使用padding-bottom:30px;

用DIV包装InfoBox内容

JS:

map_info_window = new google.maps.InfoWindow();      
var $content = $('<div class="infobox">').html(content);
map_info_window.setContent($content.get(0));
map_info_window.open(map, marker);

CSS:

.infobox{
    padding-bottom: 30px;
}

答案 4 :(得分:0)

这不是一个真正的答案(daveoncode创建DOM节点的解决方案,并将其用作内容是正确的),但如果您需要动态更改内容一旦设置(例如使用jQuery),那么您可以强制gmail用以下内容调整infoWindow的大小:

infoWindowLinea.setContent(infoWindowLinea.getContent());