vue-element-admin使用地图

本文介绍了如何在Vue.js应用中整合高德地图API,实现地址搜索、定位及地图标记功能。通过vue-amap插件,设置地图初始化参数,包括key、插件和版本号,然后在组件中使用AMapApiLoader加载地图,并监听地图点击事件以添加标记。同时,展示了获取当前位置并显示标记的完整代码流程。
摘要由CSDN通过智能技术生成

在高德地图申请key时,pc端需要申请的是web(js),不是web,不然会报错
我使用的是vue-amap,需要的可

import VueAMap from 'vue-amap';

Vue.use(VueAMap);
VueAMap.initAMapApiLoader({
  key:'在高德地图申请的key',
  plugin: [
   "AMap.Autocomplete",
   //输入提示插件
   "AMap.PlaceSearch",
   //POI搜索插件
   "AMap.Scale",
   //右下角缩略图插件 比例尺
   "AMap.OverView",
   //地图鹰眼插件
   "AMap.ToolBar",
   //地图工具条
   "AMap.MapType",
   //类别切换控件,实现默认图层与卫星图、实施交通图层之间切换的控制
   "AMap.PolyEditor",
   //编辑 折线多,边形
   "AMap.CircleEditor",
   //圆形编辑器插件
   "AMap.Geolocation",
   //定位控件,用来获取和展示用户主机所在的经纬度位置
   "AMap.Geocoder"
    ],
   v: '1.4.4',
    uiVersion: '1.0'
})

页面中的具体使用

<template>
      <div class="amap-page-container">
             <el-input
             class="inpu"
                 placeholder="请输入你要定位的地址"
                 v-model="address">
                 <i slot="prefix" class="el-input__icon el-icon-search"></i>
               </el-input>
               <el-button type="primary" @click="searchMap()">定位</el-button>
            <el-amap vid="amap" :plugin="plugin" class="amap-demo" :center="center" :zoom="zoom" :events='events'>
              <!-- 点击显示标记 -->
              <el-amap-marker v-for="(marker, index) in markers" :key="marker.index" :position="marker.position"
                     :icon="marker.icon" :title="marker.title" :events="marker.events" :visible="marker.visible"
                     :draggable="marker.draggable" :vid="index"></el-amap-marker>
            </el-amap>
             <div class="dis-tan ju-cen">
               <el-button type="primary" @click="tijiao" class="wan">完成</el-button>
             </div>
     </div>
</template>

<script>
export default {
  name:"map",
  props:{

  },
  data () {
         let self = this;
      return {
        tishi:'',
        //从这里下去是地图有关的
        address: '',  //获取的位置
        zoom: 13,  // 地图缩放
        center: [122.59996, 26.197646],  // 初始中心
        lng: 0,  //经纬度
        lat: 0,
        loaded: false,
        // 点击显示的标记默认的定位
        markers: [],
        //  自动定位到当前位置
        plugin: [{
         timeout: 1000, //超过10秒后停止定位,默认:无穷大
          panToLocation: true, //定位成功后将定位到的位置作为地图中心点,默认:true
          zoomToAccuracy: true, //定位成功后调整地图视野范围使定位位置及精度范围视野内可见,默认:f
          pName: 'Geolocation',
          events: {
            init(o) {
              // o 是高德地图定位插件实例
              o.getCurrentPosition((status, result) => {
                if (result && result.position) {
                  self.address = result.formattedAddress;
                  self.lng = result.position.lng;
                  self.lat = result.position.lat;
                  self.center = [self.lng, self.lat];
                  self.markers=[{
                    position:  self.center,
                  }]
                  self.loaded = true;
                  self.$nextTick();
                }
                else{
                  o.getCityInfo((status, result) => {
                    if (result && result.center) {
                      // self.address = result.formattedAddress;
                      self.lng = result.center[0];
                      self.lat = result.center[1];
                      self.center = result.center;
                      self.markers=[{
                        position:  self.center,
                      }]
                      self.loaded = true;
                      self.$nextTick();
                    }
                  });
                }
              });
            }
          }
        }],
        // 点击地图获取当前位置并显示标记
        events: {
          click(e) {
            self.chaadd(e.lnglat)
          }
        }
      }
    },
    created() {
      console.log(this.address)
    },
    methods: {
      searchMap() {
        let that = this;
        let address=this.address;
            var geocoder = new AMap.Geocoder({
                city: "", //城市设为北京,默认:“全国”
            });
          geocoder.getLocation(address, function(status, result) {
              if (status === 'complete'&&result.geocodes.length) {
                  var lnglat = result.geocodes[0].location;
                  that.center = [lnglat.lng,lnglat.lat]
                  that.lng =  lnglat.lng;
                  that.lat = lnglat.lat;
                  that.markers=[{
                    position:  that.center,
                  }]
              }else{
                  console.log('根据地址查询位置失败');
              }
          });
      },
      tijiao(){
        let data = {
          lng:this.lng,
          lat:this.lat
        };
         this.$emit('mapDing', data);
      },
      chaadd(e){
        let self = this;
        let {lng,lat} =  e;
        self.lng = lng;
        self.lat = lat;
        self.center = [self.lng,self.lat];
        self.loaded = true;
        self.markers=[{
          position:  self.center,
        }]
          var geocoder = new AMap.Geocoder({
              radius: 1000 //范围,默认:500
          });
          var marker = new AMap.Marker();
          function regeoCode() {
              var lnglat  = [lng,lat]
              geocoder.getAddress(lnglat, function(status, result) {
                  if (status === 'complete'&&result.regeocode) {
                      self.address = result.regeocode.formattedAddress;
                  }else{
                      console.log('根据经纬度查询地址失败')
                  }
              });
          }
          regeoCode();
      },
    }
}
</script>


<style>
  .amap-page-container{
    height: 400px;
    padding-top: 20px;
  }
  .inpu{
    width: calc(100% - 120px);
    margin-right: 20px;
    margin-bottom: 20px;
    margin-left: 20px;
  }
  .wan{
    margin-top: 20px;
  }
</style>

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值