当前位置: 移动技术网 > IT编程>开发语言>JavaScript > 百度地图添加搜索悬浮窗功能

百度地图添加搜索悬浮窗功能

2018年12月14日  | 移动技术网IT编程  | 我要评论
来自:https://www.2cto.com/kf/201701/587448.html 侵删


<!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="viewport" content="initial-scale=1.0, user-scalable=no" /> <style type="text/css"> body, html{width: 100%;height: 100%;margin:0;font-family:"微软雅黑";font-size:14px;} #l-map{height:300px;width:100%;} #r-result{width:100%;} </style> <!-- <script type="text/javascript" src="https://api.map.baidu.com/api?v=1.4"></script> --> <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=密匙"></script> <title>关键字输入提示词条</title> </head> <body> <p id="l-map"> </p> </body> </html> <script type="text/javascript"> // 百度地图api功能 function g(id) { return document.getelementbyid(id); } var map = new bmap.map("l-map"); map.centerandzoom(new bmap.point(120.714537, 30.122469), 9); // 初始化地图,设置城市和地图级别。 // 定义一个控件类,即function function zoomcontrol() { this.defaultanchor = bmap_anchor_top_left; this.defaultoffset = new bmap.size(10, 10); } // 通过javascript的prototype属性继承于bmap.control zoomcontrol.prototype = new bmap.control(); // 自定义控件必须实现自己的initialize方法,并且将控件的dom元素返回 // 在本方法中创建个p元素作为控件的容器,并将其添加到地图容器中 zoomcontrol.prototype.initialize = function(map){ // 创建一个dom元素 var p = document.createelement("p"); p.innerhtml = '<p id="r-result">搜索地址:<input type="text" id="suggestid" size="20" value="百度" style="width:150px;" /></p><p id="searchresultpanel" style="border:1px solid #c0c0c0;width:150px;height:auto; display:none;"></p>'; // 添加dom元素到地图中 map.getcontainer().appendchild(p); // 将dom元素返回 return p; } // 创建控件 var myzoomctrl = new zoomcontrol(); // 添加到地图当中 map.addcontrol(myzoomctrl); var ac = new bmap.autocomplete( //建立一个自动完成的对象 {"input" : "suggestid" ,"location" : map }); ac.addeventlistener("onhighlight", function(e) { //鼠标放在下拉列表上的事件 var str = ""; var _value = e.fromitem.value; var value = ""; if (e.fromitem.index > -1) { value = _value.province + _value.city + _value.district + _value.street + _value.business; } str = "fromitem<br />index = " + e.fromitem.index + "<br />value = " + value; value = ""; if (e.toitem.index > -1) { _value = e.toitem.value; value = _value.province + _value.city + _value.district + _value.street + _value.business; } str += "<br />toitem<br />index = " + e.toitem.index + "<br />value = " + value; g("searchresultpanel").innerhtml = str; }); var myvalue; ac.addeventlistener("onconfirm", function(e) { //鼠标点击下拉列表后的事件 var _value = e.item.value; myvalue = _value.province + _value.city + _value.district + _value.street + _value.business; g("searchresultpanel").innerhtml ="onconfirm<br />index = " + e.item.index + "<br />myvalue = " + myvalue; setplace(); }); function setplace(){ map.clearoverlays(); //清除地图上所有覆盖物 function myfun(){ var pp = local.getresults().getpoi(0).point; //获取第一个智能搜索的结果 map.centerandzoom(pp, 14); console.log('pp',pp) map.addoverlay(new bmap.marker(pp)); //添加标注 } var local = new bmap.localsearch(map, { //智能搜索 onsearchcomplete: myfun }); local.search(myvalue); } </script>

 

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网