vue中使用百度地图,悬浮窗搜索功能
程序员文章站
2024-01-14 09:16:22
https://www.cnblogs.com/shuaifing/p/8185311.html 侵删 ......
https://www.cnblogs.com/shuaifing/p/8185311.html 侵删
<template> <div id="all"> <input type="text" id="suggestid" name="address_detail" placeholder="地址" v-model="address_detail" class="input_style"> <div id="allmap"></div> </div> </template> <script> //import {mp} from '../../map' export default { data(){ return { address_detail: null, //详细地址 userlocation: {lng: "", lat: ""}, } }, mounted(){ this.$nexttick(function () { var th = this // 创建map实例 var map = new bmap.map("allmap"); // 初始化地图,设置中心点坐标, var point = new bmap.point(121.160724,31.173277); // 创建点坐标,汉得公司的经纬度坐标 map.centerandzoom(point, 15); map.enablescrollwheelzoom(); var ac = new bmap.autocomplete( //建立一个自动完成的对象 { "input": "suggestid" , "location": map }) var myvalue ac.addeventlistener("onconfirm", function (e) { //鼠标点击下拉列表后的事件 var _value = e.item.value; myvalue = _value.province + _value.city + _value.district + _value.street + _value.business; this.address_detail = myvalue setplace(); }); function setplace() { map.clearoverlays(); //清除地图上所有覆盖物 function myfun() { th.userlocation = local.getresults().getpoi(0).point; //获取第一个智能搜索的结果 map.centerandzoom(th.userlocation, 18); map.addoverlay(new bmap.marker(th.userlocation)); //添加标注 } var local = new bmap.localsearch(map, { //智能搜索 onsearchcomplete: myfun }); local.search(myvalue); //测试输出坐标(指的是输入框最后确定地点的经纬度) map.addeventlistener("click",function(e){ //经度 console.log(th.userlocation.lng); //维度 console.log(th.userlocation.lat); }) } }) }, } </script> <style scoped> #allmap{ width: 400px; height: 400px; font-family: "微软雅黑"; border:1px solid green; } </style>
上一篇: Vue用mixin合并重复代码的实现
下一篇: 通信设备制造行业百强企业2014