我有一个谷歌地图。
还有一个信息窗口。
现在尺寸是标准的,里面有大量的文字。
所以,我的老板要求我增加它。
我们正在使用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);
}});
});
完整的文章在这个网站上。
但我无法将它们合并为 1。
尤其是那个家伙使用map.openInfoWindowHtml()
3 个参数并且ektron
只使用marker.openInfoWindowHtml()
一个参数。
知道如何完成这项工作吗?Tkz 很多。
而且..我对谷歌地图很陌生。所以,如果我的问题浪费你的时间,请原谅我。