';
//创建检索信息窗口对象
var searchInfoWindow = null;
searchInfoWindow = new BMapLib.SearchInfoWindow(map, content, {
title : "贵州EBET易博健康药业有限公司", //标题
width : 290, //宽度
height : 130, //高度
panel : "panel", //检索结果面板
enableAutoPan : true, //自动平移
searchTypes :[
BMAPLIB_TAB_SEARCH, //周边检索
BMAPLIB_TAB_TO_HERE, //到这里去
BMAPLIB_TAB_FROM_HERE //从这里出发
]
});
var marker = new BMap.Marker(poi); //创建marker对象
marker.enableDragging(); //marker可拖拽
marker.addEventListener("click", function(e){ searchInfoWindow.open(marker); })
map.addOverlay(marker); //在地图中添加marker
searchInfoWindow.open(marker); //在marker上打开检索信息串口
$("close").onclick = function(){ searchInfoWindow.close(); }
$("show").onclick = function(){ searchInfoWindow.show(); }
$("hide").onclick = function(){ searchInfoWindow.hide(); }
$("setValue").onclick = function(){
searchInfoWindow.setPosition(new BMap.Point($("lng").value, $("lat").value));
searchInfoWindow.setTitle($("title").value);
searchInfoWindow.setContent($("content").value);
}
$("getContent").onclick = function(){ alert(searchInfoWindow.getContent()); }
$("getTitle").onclick = function(){ alert(searchInfoWindow.getTitle()); }