Vue项目通过百度地图获取地理定位【请开启HTTPS】

Vue 项目中使用百度地图
一.写在前面的话,在vue项目中使用H5新特性在IOS手机上打开vue网页会有适应性问题,并且无法获取所在城市,因此使用第三方库百度地图api
二.使用步骤
1.获取百度地图密钥
(1).注册百度开发者帐户 http://lbsyun.baidu.com/
(2).创建网站为网站申请百度地址访问密钥 AccessKey
2.实现百度地图定位
(1).在vue项目中index.html中引入 百度地图api

<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=【你的秘钥】"></script>

(2).在build/webpack.base.conf.js里面 配置

module.exports = {
	context: path.resolve(__dirname, '../'),
	entry: {
		app: './src/main.js'
	},
	//添加
	externals: {
		"BMap": "BMap"
	},
}

(3).定义方法,并在mounted中进行引用

//引入BMap
import BMap from 'BMap'
//定义数据
data() {
      location: null
 },
 methods:{
//定义方法
getCity(){
      let _this = this
      var geolocation = new BMap.Geolocation();
      geolocation.getCurrentPosition(function(r) {
        if (this.getStatus() == BMAP_STATUS_SUCCESS) {
          if(r.accuracy==null){
	    alert('您已拒绝地理位置授权');
	    //用户决绝地理位置授权
	    return;
	  }else{
            const myGeo = new BMap.Geocoder()
            myGeo.getLocation(new BMap.Point(r.point.lng, r.point.lat), data => {
             if (data.addressComponents) {
              const result = data.addressComponents
              const location = {
                creditLongitude: r.point.lat, // 经度
                creditLatitude: r.point.lng, // 纬度
                creditProvince: result.province || '', // 省
                creditCity: result.city || '', // 市
                creditArea: result.district || '', // 区
                creditStreet: (result.street || '') + (result.streetNumber || '') // 街道
              }
              _this.location = location;
              _this.creditLongitude=location.creditLongitude;
              _this.creditLatitude=location.creditLatitude;
              _this.creditCity=location.creditCity;
              // alert(this.getStatus());
             }
            })
          }
        }
      })
    },    
 }
//mounted中引用
 mounted() {
       this.getCity();
    }
评论 9
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值