Vue引入高德地图实现流程分步讲解

目录
  • 一、功能需求
  • 二、准备
  • 三、在webstorm中安装
  • 四、防止在使用中AMap无法识别问
  • 五、正式开发
  • 六、步骤总结
  • 七、效果

一、功能需求

1.根据输入内容进行模糊查询,选择地址后在地图上插上标记,并更新经纬度坐标显示

2.在地图点击后,根据回传的左边更新地址信息和坐标显示

二、准备

1.申请高德地图账号,创建应用

2.在应用管理中 获得key 和安全密钥

三、在webstorm中安装

npm i @amap/amap-jsapi-loader -S

四、防止在使用中AMap无法识别问

在eslintrc.js中加入配置:

  globals:{
    "AMap": "true"
  }

五、正式开发

1.创建页面

<template>
  <div>
    <label>消息管理</label>
    <div style="margin-top: 20px">
      <div style="height:520px;">
        <div id="all" style="height:100%">
          <div class="posInput">
            <el-input style="width:100%"
                      id="tipinput"
                      class="form-control input-style"
                      type="text"
                      placeholder="请输入搜索地址"
                      prefix-icon="el-icon-search"
                      v-model="formatAdress"
            >
            </el-input>
          </div>
          <div id="allmap"></div>
          <div class="posSubmit">
            <el-form  ref="form"  label-width="85px" >
              <div class="btn_box" >
                <el-form-item label="经度:" >
                  <el-input style="width:400px" disabled class="form-control input-style" type="text" v-model="longitude"> </el-input>
                </el-form-item>
                <el-form-item label="纬度:" >
                  <el-input style="width:400px"  disabled class="form-control input-style" type="text" v-model="latitude"> </el-input>
                </el-form-item>
              </div>
            </el-form>
          </div>
        </div>
      </div>
    </div>
  </div>
</template>

2.页面样式

<style scoped>
#all{
  position: relative;
}
#allmap{
  width: 100%;  height: calc(100%  - 50px);
  font-family: "微软雅黑";
}
.posInput{
  position: absolute;
  z-index: 1;
  width: 80%;
  margin-top: 20px;  margin-left: 10%;
}
.posSubmit{
  position: absolute; z-index: 1; bottom: 0;
  margin-left: 5%;
  width: 90%;
  display: flex;  justify-content: flex-start; align-items: center;
}
.btn_box{
  width: 100%;
  height: 100%;
  display: flex;  ; align-items: center;
}
::v-deep .el-form-item{
  margin-bottom: 0 !important;
}
</style>

3.存储的数据项

data () {
    return {
      map: null,
      marker: null,
      startSeacrh: [],
      stratInfo: {},
      dprops: {
        zoom: 15
      },
      formatAdress: '',
      longitude: '', // 经度
      latitude: '', // 纬度
    }
  }

4.创建地图方法

  mounted () {
    this.initMap()
  },
  methods: {
    initMap () {
      const that = this
      init('allmap', that.dprops).then(AMap => {
        that.map = AMap
        that.map.on('click', that.clickHandler) // 地图点击事件 可获取经纬度等信息
        initScaleTools(that.map, true, false)
        searchAutocomplete(that.map, 'tipinput', function (event) {
          that.handleStartSelect(event)
        })
      }).catch(err => {
        this.$message.error(err)
      })
    },
    clickHandler (event) {
      console.log(event, '起点经纬度 [lng,lat]')
      if (event.lnglat === '') {
        this.$message({
          type: 'warning',
          message: '该地点无经纬度数据,请输入具体一点的地点!',
          duration: 5 * 1000
        })
        return
      }
      if (this.marker) {
        this.map.remove(this.marker)
        this.marker = null
      }
      this.startSeacrh = []
      this.startSeacrh = [event.lnglat.lng, event.lnglat.lat]
      this.marker = new AMap.Marker({
        position: this.startSeacrh
      })
      this.map.add(this.marker)
      this.map.setCenter(this.startSeacrh)
      this.longitude = event.lnglat.lng
      this.latitude = event.lnglat.lat
      let that = this
      getAddressByLngLat(this.startSeacrh, function (status, result) {
        if (status === 'complete') {
          that.formatAdress = result.regeocode.formattedAddress
          let adrComponent = result.regeocode.addressComponent
          that.stratInfo = {
            district: adrComponent.province,
            address: adrComponent.district,
            name: adrComponent.township + adrComponent.street + adrComponent.streetNumber,
            fullAdr: result.regeocode.formattedAddress
          }
        }
      })
    },
    handleStartSelect (event) {
      console.log(event, '起点经纬度 [lng,lat]')
      if (event.poi.location === '') {
        this.$message({
          type: 'warning',
          message: '该地点无经纬度数据,请输入具体一点的地点!',
          duration: 5 * 1000
        })
        return
      }
      if (this.marker) {
        this.map.remove(this.marker)
        this.marker = null
      }
      this.startSeacrh = []
      this.startSeacrh = [event.poi.location.lng, event.poi.location.lat]
      this.formatAdress = event.poi.district + event.poi.address + event.poi.name
      this.longitude = event.poi.location.lng
      this.latitude = event.poi.location.lat
      this.marker = new AMap.Marker({
        position: this.startSeacrh
      })
      this.map.add(this.marker)
      this.map.setCenter(this.startSeacrh)
      this.stratInfo = {
        district: event.poi.district,
        address: event.poi.address,
        name: event.poi.name,
        fullAdr: this.formatAdress
      }
    }
  }

5.封装好的js文件方法

initMap.js

import AMapLoader from '@amap/amap-jsapi-loader'
window._AMapSecurityConfig = {
  securityJsCode: '安全密钥'
}
const initMap = async (config) => {
  return new Promise((resolve, reject) => {
    AMapLoader.load({
      'key': config.key,
      'version': '1.4.15',
      'plugins': [
        'AMap.PolygonEditor' // 插件
      ],
      'AMapUI': {
        'version': '1.1',
        'plugins': []
      },
      'Loca': {
        'version': '1.3.2'
      }
    }).then((AMap) => {
      resolve(AMap)
    }).catch(err => {
      reject(err)
    })
  })
}
export default initMap

map.js

import initMap from './initMap.js'
export const init = (container, props) => {
  const config = {
    key: 'key'
  }
  return new Promise((resolve, reject) => {
    initMap(config).then(AMap => {
      resolve(new AMap.Map(container, { ...props }))
    }).catch(err => {
      reject(err)
    })
  })
}
/**
 * @param {*} map 地图实例
 * @param {Boolean} noScale 不需要比例尺  true表示不需要
 * @param {Boolean} noToolBar 不需要工具栏 true表示不需要
 */
export const initScaleTools = (map, noScale, noToolBar) => {
  if (!noScale) {
    map.plugin(['AMap.Scale'], function () {
      var scale = new AMap.Scale()
      map.addControl(scale)
    })
  }
  if (!noToolBar) {
    map.plugin(['AMap.ToolBar'], function () {
      var tool = new AMap.ToolBar()
      map.addControl(tool)
    })
  }
}
//模糊查询
export const searchAutocomplete = (map, keyword, commpletHandle) => {
  map.clearMap()
  AMap.plugin(['AMap.PlaceSearch', 'AMap.Autocomplete'], function () {
    let autoOptions1 = { input: keyword, city: '全国' }
    let startAutoComplete = new AMap.Autocomplete(autoOptions1)
    AMap.PlaceSearch({
      map: map
    })
    AMap.event.addListener(startAutoComplete, 'select', commpletHandle)
  })
}
/**
 *
 * @param {String} LngLat 经纬度
 * @param {Function} callback 回调函数
 * @param {Object} otherProps 其他参数
 */
export const getAddressByLngLat = (LngLat, callback, otherProps) => {
  AMap.plugin('AMap.Geocoder', function () {
    let geocoder = new AMap.Geocoder({
      ...otherProps
    })
    geocoder.getAddress(LngLat, function (status, result) {
      callback(status, result)
    })
  })
}
const mapJS = {
  init,
  initScaleTools,
  searchAutocomplete,
  getAddressByLngLat
}
export default mapJS

在文件中导入 map.js方法

import {
  init,
  initScaleTools,
  searchAutocomplete,
  getAddressByLngLat
} from '../../utils/map'

六、步骤总结

1.在mounted()中调用initMap ()初始化地图

2.初始化成功后、添加事件监听:地图点击、模糊查询。添加放大缩小工具栏

init('allmap', that.dprops).then(AMap => {
        that.map = AMap
        that.map.on('click', that.clickHandler) // 地图点击事件 可获取经纬度等信息
        initScaleTools(that.map, true, false)
        searchAutocomplete(that.map, 'tipinput', function (event) {
          that.handleStartSelect(event)
        })
      })

七、效果

到此这篇关于Vue引入高德地图实现流程分步讲解的文章就介绍到这了,更多相关Vue高德地图内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • 在vue项目中引入高德地图及其UI组件的方法

    引入高德地图: 打开index.html,引用高德地图的JavaScript API: <script type="text/javascript" src="http://webapi.amap.com/maps?v=1.3&key=你的API key"></script> 在"key="这里添加你申请的key,key不需要加引号. 引入高德地图UI组件,只需要在上面代码后面再加一串代码: <script

  • 在vue中高德地图引入和轨迹的绘制的实现

    高德地图引入和轨迹的绘制 1.第一步 vue中使用cdn引入高德地图,并在main.js中进行全局配置.(百度上有高德地图引入与配置方法,这里就不详细介绍): 1) npm install vue-amap --save 2) import VueAMap from 'vue-amap' Vue.use(VueAMap); VueAMap.initAMapApiLoader({ key: '********************',//自己在高德地图平台上的key值 plugin: ['AMa

  • Vue 引入AMap高德地图的实现代码

    本文代码仅针对 Vue CLI 3.x 生成的项目有效,但是在第二步配置的时候,可以直接配置 webpack.externals,所以本引入思路是通用的,并不局限于该项目 资源 AMap 准备-入门教程 引入 AMap 在 public/index.html 文件 </body> 前引入 <script type="text/javascript" src="https://webapi.amap.com/maps?v=1.4.14&key=您申请的

  • vue中引入高德地图并多点标注的实现步骤

    vue中引入高德地图并多点标记 步骤: 通过vue的方法引入地图 初始化地图,设置宽和高 信息窗口实例 遍历生成多个标记点 首先在项目的public下的index.html中引入地图 <link rel="stylesheet" href="https://cache.amap.com/lbs/static/main1119.css"/> <script src="https://webapi.amap.com/maps?v=1.4.15

  • Vue引入高德地图并触发实现多个标点的示例详解

    目录 1. 在public下的index.html中引入地图 2.引入组件设置宽高100% 3.数组形式数据固定(一) 4.用ajax请求后端真是接口(二) 5.其他需求请看文档请看官方文档 1. 在public下的index.html中引入地图 <link rel="stylesheet" href="https://cache.amap.com/lbs/static/main1119.css" rel="external nofollow&quo

  • Vue引入高德地图实现流程分步讲解

    目录 一.功能需求 二.准备 三.在webstorm中安装 四.防止在使用中AMap无法识别问 五.正式开发 六.步骤总结 七.效果 一.功能需求 1.根据输入内容进行模糊查询,选择地址后在地图上插上标记,并更新经纬度坐标显示 2.在地图点击后,根据回传的左边更新地址信息和坐标显示 二.准备 1.申请高德地图账号,创建应用 2.在应用管理中 获得key 和安全密钥 三.在webstorm中安装 npm i @amap/amap-jsapi-loader -S 四.防止在使用中AMap无法识别问

  • Vue使用高德地图搭建实时公交应用功能(地图 + 附近站点+线路详情 + 输入提示+换乘详情)

    最近项目要使用高德地图写了一个实时公交的应用,这边分享一个小应用主要熟悉下高德地图在vue中的使用,常用api,vue的常用指令 先给大家看下页面效果: 如果有需要源码的童鞋请移步我的github地址 vue搭建实时公交 (欢迎star) 实现思路 在vue项目中导入高德地图 具体功能调用相应高德js APi 1.在vue项目中导入高德地图 1.修改webpac.base.conf.js文件 externals: { 'AMap': 'AMap' } 2.引入sdk 引入有两种方式,一种是在in

  • vue.js高德地图实现热点图代码实例

    1.在index.html引入高德地图JSAPI <script src="https://webapi.amap.com/maps?v=1.3&key=xxx"></script> 2.地图dom <div class="map-container"> <div id="container" style="width:100%;height:500px"></di

  • Vue开发高德地图应用的最佳实践

    目录 前言 异步加载 封装组件 使用组件 自定义界面最佳实践 总结 前言 之前做不过不少关于地图交互的产品系统,目前国内主流的地图应用 SDK 只有几家:高德.百度和腾讯.所以个人觉得在 PC 应用上高德地图开发相对好一些,至少体验起来没有很明显的坑.这篇文章算是总结下开发地图应用总结吧. 异步加载 因为使用 js sdk 应用,脚本文件本身体积很大,所以要注意下加载的白屏时间,解决用户体验问题,目前绝大部分产品应用都是 SPA 单页面应用系统,所以我封装一个异步加载的方法: const loa

  • Vue使用高德地图实现城市定位

    本文实例为大家分享了Vue使用高德地图实现城市定位的具体代码,供大家参考,具体内容如下 一 前端选择框点击跳转至地图选址页面 <van-row class="address_item"> <van-col span="6" class="item-title">收货地址</van-col> <van-col span="18"> <p class="item&qu

  • vue接入高德地图绘制扇形效果的案例详解

    目录 vue接入高德地图绘制扇形 需求 预想效果 代码实现 绘制基站第一步 绘制基站第二步 - 计算扇形形状 计算扇形坐标 扇区点击事件 原点点击事件 vue接入高德地图绘制扇形 为什么又写这一篇呢,主要是因为这个功能高德不支持,只能自己实现,但是呢,我估计很多人会用到这玩意儿.所以说呢,就简单的实现一下,如果有需要的话直接超过去就行,之前写过天地图绘制扇形区域的,如果使用天地图的话可以翻一下我之前的博客,百度地图和这个方法类似,可能就是使用的类不同,这样的话只要原理流程理解的差不多,直接把各个

随机推荐