電話:0550-7041128' +
'
';
//創建檢索信息窗口對象
var searchInfoWindow = null;
searchInfoWindow = new BMapLib.SearchInfoWindow(map, content, {
title : "新利體育(luck18)", //標題
width : 290, //寬度
height : 150, //高度
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上打開檢索信息串口
//樣式1
var searchInfoWindow1 = new BMapLib.SearchInfoWindow(map, "信息框1內容", {
title: "信息框1", //標題
panel : "panel", //檢索結果面板
enableAutoPan : true, //自動平移
searchTypes :[
BMAPLIB_TAB_FROM_HERE, //從這里出發
BMAPLIB_TAB_SEARCH //周邊檢索
]
});
function openInfoWindow1() {
searchInfoWindow1.open(new BMap.Point(118.86563,32.608239));
}
//樣式2
var searchInfoWindow2 = new BMapLib.SearchInfoWindow(map, "信息框2內容", {
title: "信息框2", //標題
panel : "panel", //檢索結果面板
enableAutoPan : true, //自動平移
searchTypes :[
BMAPLIB_TAB_SEARCH //周邊檢索
]
});
function openInfoWindow2() {
searchInfoWindow2.open(new BMap.Point({label:jingdu},{label:weidu}));
}
//樣式3
var searchInfoWindow3 = new BMapLib.SearchInfoWindow(map, "信息框3內容", {
title: "信息框3", //標題
width: 290, //寬度
height: 40, //高度
panel : "panel", //檢索結果面板
enableAutoPan : true, //自動平移
searchTypes :[
]
});
function openInfoWindow3() {
searchInfoWindow3.open(new BMap.Point({label:jingdu},{label:weidu}));
}
var isPanelShow = false;
//顯示結果面板動作
$("showPanelBtn").onclick = function(){
if (isPanelShow == false) {
isPanelShow = true;
$("showPanelBtn").style.right = "300px";
$("panelWrap").style.width = "300px";
$("map").style.marginRight = "300px";
$("showPanelBtn").innerHTML = "隱藏檢索結果面板
>";
} else {
isPanelShow = false;
$("showPanelBtn").style.right = "0px";
$("panelWrap").style.width = "0px";
$("map").style.marginRight = "0px";
$("showPanelBtn").innerHTML = "顯示檢索結果面板
<";
}
}