学院网站建设计划,申请邮箱账号注册,友博国际个人中心登录,网页截图快捷键ctrl加什么在百度API的输入框中怎么根据搜索到的地址获取百度的uidbody, html{width: 100%;height: 100%;margin:0;font-family:微软雅黑;font-size:14px;}#l-map{height:300px;width:100%;}#r-result{width:100%;}关键字输入提示词条请输入:// 百度地图API功能function G(id…在百度API的输入框中怎么根据搜索到的地址获取百度的uidbody, html{width: 100%;height: 100%;margin:0;font-family:微软雅黑;font-size:14px;}#l-map{height:300px;width:100%;}#r-result{width:100%;}关键字输入提示词条请输入:// 百度地图API功能function G(id) {return document.getElementById(id);}var map new BMap.Map(l-map); // 初始化地图,设置城市和地图级别。map.centerAndZoom(杭州,12);map.addControl(new BMap.MapTypeControl()); //添加地图类型控件map.setCurrentCity(杭州); // 设置地图显示的城市 此项是必须设置的map.enableScrollWheelZoom(true); //开启鼠标滚轮缩放var ac new BMap.Autocomplete( //建立一个自动完成的对象{input : suggestId,location : map});ac.addEventListener(onhighlight, function(e) { //鼠标放在下拉列表上的事件//console.log(e.fromitem);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 FromItemindex e.fromitem.index value value;value ;if (e.toitem.index -1) {_value e.toitem.value;value _value.province _value.city _value.district _value.street _value.business;}str ToItemindex e.toitem.index value value;G(searchResultPanel).innerHTML str;});var myValue;ac.addEventListener(onconfirm, function(e) { //鼠标点击下拉列表后的事件console.log(e);var _value e.item.value;myValue _value.province _value.city _value.district _value.street _value.business;G(searchResultPanel).innerHTML onconfirmindex e.item.index myValue myValue;setPlace();});function setPlace(){map.clearOverlays(); //清除地图上所有覆盖物function myFun(){var pp local.getResults().getPoi(0).point; //获取第一个智能搜索的结果map.centerAndZoom(pp, 18);map.addOverlay(new BMap.Marker(pp)); //添加标注}var local new BMap.LocalSearch(map, { //智能搜索onSearchComplete: myFun});local.search(myValue);}map.addEventListener(click,function(e){map.clearOverlays();var marker new BMap.Marker(new BMap.Point(e.point.lng,e.point.lat));//markers.push(marker);map.addOverlay(marker);});