• 联系方式

    conenct us

     
    '; //创建检索信息窗口对象 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 icon = new BMap.Icon("/images/icon_map.png", new BMap.Size(40, 50), { 'anchor': new BMap.Size(15, 25) }); //var marker = new BMap.Marker(point, { icon: icon }); var marker = new BMap.Marker(poi, { icon: icon }); //创建marker对象 marker.enableDragging(); //marker可拖拽 marker.addEventListener("click", function (e) { searchInfoWindow.open(marker); }) map.addOverlay(marker); //在地图中添加marker changeMapStyle('light') sel.value = 'light'; function changeMapStyle(style) { map.setMapStyle({ style: style }); $('#desc').html(mapstyles[style].desc); }