';
//創建檢索信息窗口對象
var searchInfoWindow = null;
searchInfoWindow = new BMapLib.SearchInfoWindow(map, content, {
title : "深圳市思科瑞電子有限公司", //標題
width : 290, //寬度
height : 105, //高度
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
//樣式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(114.082797,22.718802));
}
//樣式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(114.082797,22.718802));
}
//樣式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(114.082797,22.718802));
}