第一步在index.html中引入
<script src="http://api.map.baidu.com/api?v=2.0&ak=你自己的访问应用(AK)"></script>
第二步 在公共文件里面创建一个getUserLocation.js,文件内容如下:
//百度地图获取城市名称的方法
let getCurrentCityName = function () {
return new Promise(function (resolve, reject) {
let myCity = new BMap.LocalCity()
myCity.get(function (result) {
resolve(result.name)
})
})
}
export default getCurrentCityName
第三步 在需要的vue文件内使用
import getCurrentCityName from 'common/js/getUserLocation'
method: {
//通过百度地图获取当前城市
getCurrentCity() {
getCurrentCityName().then((city) => {
console.log(city); //顺利的话能在控制台打印出当前城市
})
}
}
mounted(){
this.getCurrentCity()
}
网友评论