联系我们
  • 叼嘿视频
  • 公司地址:保定市裕华东路客运中心正对过
  • 电话:0312-5090545/400-884-8022
  • 手机:13930264654 / 15931860716
  • 邮箱:baoergongsi@163.com/13803284512@163.com
  • 国际贸易部:13930264654 / 15931860716
  • 保定生产厂地址:保定市长城北大街西百楼工业园区
  • 电话:0312-5090545
  • 沧州生产厂地址:河北省吴桥经济技术开发区海河路
  • 电话:0317-7278188
// 百度地图API功能 var map = new BMap.Map('map'); var poi = new BMap.Point(115.549074,38.859798); map.centerAndZoom(poi, 16); map.enableScrollWheelZoom(); var content = '
' + ' 版权所有:男女叼嘿视频在线 - 恒大集团第一美女' +'

'+'0312-5090545'+'

传真:
客服:
E-mail:13803284512@163.com ' + '
'; //创建检索信息窗口对象 var searchInfoWindow = null; searchInfoWindow = new BMapLib.SearchInfoWindow(map, content, { title : "叼嘿视频", //标题 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(116.319852,40.057031)); } //样式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(116.324852,40.057031)); } //样式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(116.328852,40.057031)); } 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 = "显示检索结果面板
<"; } }