增加Google地图信息窗口大小

时间:2011-11-30 08:01:17

标签: javascript google-maps google-maps-api-2 ektron openinfowindowhtml

我有一张谷歌地图。

还有一个信息窗口。

现在尺寸是标准的,里面有大量的文字。

所以,我的老板让我增加它。

我们正在使用ektron CMS,因此我需要进入ektron workarea并修改map.js

即使它是ektron,它仍然使用谷歌地图。

我设法找出哪个部分显示为信息窗口。

这是代码中弹出信息窗口并在其中显示信息的部分。

marker = new GMarker(point, icon);
var infoWindow = map.getInfoWindow();
GEvent.addListener(marker, "mouseover", function () {
                    if (EMap.SearchData != 'content') {
                        if (qlink && qlink.length > 0) {
                            _userTB = '<span>' + title + '</span>';
                        }
                        else {
                            _userTB = title;
                        }
                        var theHtml1 = '<div id="IW_' + markerid + '" style="overflow:auto;width:240px;height:100px;">' + markerid + '. ' + _userTB + _summarytxt + '<br/>' + EGlobal.Format(EMap.Geolocation, new Array('javascript:EMap.SetAddress(\'' + EGlobal.Replace(address, '#', ' ') + '\',\'to\');', 'javascript:EMap.SetAddress(\'' + EGlobal.Replace(address, '#', ' ') + '\',\'from\');')) + '</div>';
                        map.openInfoWindowHtml(theHtml1);
                    }
                    else {
                        var theHtml2 = '<div id="IW_' + markerid + '" style="overflow:auto;width:240px;height:100px;">' + markerid + '. <span><b>' + title + '</b></span><br/>' + _summarytxt + '<br/>' + EGlobal.Format(EMap.Geolocation, new Array('javascript:EMap.SetAddress(\'' + EGlobal.Replace(address, '#', ' ') + '\',\'to\');', 'javascript:EMap.SetAddress(\'' + EGlobal.Replace(address, '#', ' ') + '\',\'from\');')) + '</div>';
                        marker.openInfoWindowHtml(theHtml2);
                    }
                });

我尝试在谷歌搜索,发现这是一个人试图改变信息窗口大小的方式。

var infoWindow = map.getInfoWindow();
var point = new GLatLng(0,0);
var marker = new GMarker(point);
GEvent.bind(marker,”click”,marker,function() {
    map.openInfoWindowHtml(this.getPoint(),this.address,{onOpenFn:function(){
        infoWindow.reset(this.getPoint(),infoWindow.getTabs(),new GSize(200,200),null,null);
    }});
});

完整的文章位于this site

但我无法将它们合并为1。

尤其是那个人正在使用map.openInfoWindowHtml()个参数,ektron正在使用只有一个参数的marker.openInfoWindowHtml()

知道如何完成这项工作吗? Tkz很多。

而且..我对谷歌地图很新。所以,请原谅我,如果我的问题是浪费你的时间。

1 个答案:

答案 0 :(得分:1)

也许这个答案太简单了,但你是否已经尝试在openInfoWindowHTML()调用中编辑这一行?

style="overflow:auto;width:240px;height:100px;">