您的位置:首页 > 其它

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

2017-04-25 18:51 387 查看
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)
});
});
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: