高德地图输入提示,POI搜索并显示经纬度

来源:互联网 发布:天天练软件好吗 编辑:程序博客网 时间:2024/04/29 14:40
var map = new AMap.Map('mp1',{   zoom: 10,   center: [116.39,39.9]//new AMap.LngLat(116.39,39.9)});AMap.plugin(['AMap.Autocomplete','AMap.PlaceSearch'],function(){   var autoOptions = {      city:'',//城市,默认全国      input: "searchInfo"//使用联想输入的input的id   };   var autocomplete= new AMap.Autocomplete(autoOptions);   var placeSearch = new AMap.PlaceSearch({      map:map   });   AMap.event.addListener(autocomplete, "select", function(e){      //      placeSearch.setCity(e.poi.adcode);      placeSearch.search(e.poi.name);      console.log(e.poi)         let gps=[];         gps.push(e.poi.location.lng)         gps.push(e.poi.location.lat)         this.Gps=gps         console.log(this.Gps)   });});

0 0
原创粉丝点击