第一步:在index.html中引入标签

<script src = 'https://webapi.amap.com/maps?v=2.0&key=高德的密钥'></script>

第二步:在vue.config.js中进行相应的配置

module.exports = {

    configureWebpack: {

        externals: {

            AMap: 'AMap' // 高德地图配置

            }

        }

}

第三步:在vue文件中进行定位方法的调用

首先引入:import AMap from 'AMap'

之后在methods中调用一下方法,即可获取到城市信息

// 获取定位
    getLocation () {
      const _this = this
      AMap.plugin('AMap.CitySearch', function () {
        var citySearch = new AMap.CitySearch()
        citySearch.getLocalCity(function (status, result) {
          if (status === 'complete' && result.info === 'OK') {
            // 查询成功,result即为当前所在城市信息
            console.log('通过ip获取当前城市:', result)
            _this.autolocation = result.city
          }
        })
      })
    }

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐