亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Vue引入高德地圖實現(xiàn)流程分步講解

 更新時間:2022年12月01日 15:57:29   作者:清雨未盡時  
這篇文章主要介紹了Vue引入高德地圖實現(xiàn)流程,實現(xiàn)步驟是通過vue的方法引入地圖,初始化地圖,設(shè)置寬和高,本文通過實例代碼給大家介紹的非常詳細,需要的朋友可以參考下

一、功能需求

1.根據(jù)輸入內(nèi)容進行模糊查詢,選擇地址后在地圖上插上標記,并更新經(jīng)緯度坐標顯示

2.在地圖點擊后,根據(jù)回傳的左邊更新地址信息和坐標顯示

二、準備

1.申請高德地圖賬號,創(chuàng)建應(yīng)用

2.在應(yīng)用管理中 獲得key 和安全密鑰

三、在webstorm中安裝

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

四、防止在使用中AMap無法識別問

在eslintrc.js中加入配置:

  globals:{
    "AMap": "true"
  }

五、正式開發(fā)

1.創(chuàng)建頁面

<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="經(jīng)度:" >
                  <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.存儲的數(shù)據(jù)項

data () {
    return {
      map: null,
      marker: null,
      startSeacrh: [],
      stratInfo: {},
      dprops: {
        zoom: 15
      },
      formatAdress: '',
      longitude: '', // 經(jīng)度
      latitude: '', // 緯度
    }
  }

4.創(chuàng)建地圖方法

  mounted () {
    this.initMap()
  },
  methods: {
    initMap () {
      const that = this
      init('allmap', that.dprops).then(AMap => {
        that.map = AMap
        that.map.on('click', that.clickHandler) // 地圖點擊事件 可獲取經(jīng)緯度等信息
        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, '起點經(jīng)緯度 [lng,lat]')
      if (event.lnglat === '') {
        this.$message({
          type: 'warning',
          message: '該地點無經(jīng)緯度數(shù)據(jù),請輸入具體一點的地點!',
          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, '起點經(jīng)緯度 [lng,lat]')
      if (event.poi.location === '') {
        this.$message({
          type: 'warning',
          message: '該地點無經(jīng)緯度數(shù)據(jù),請輸入具體一點的地點!',
          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 經(jīng)緯度
 * @param {Function} callback 回調(diào)函數(shù)
 * @param {Object} otherProps 其他參數(shù)
 */
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

在文件中導(dǎo)入 map.js方法

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

六、步驟總結(jié)

1.在mounted()中調(diào)用initMap ()初始化地圖

2.初始化成功后、添加事件監(jiān)聽:地圖點擊、模糊查詢。添加放大縮小工具欄

init('allmap', that.dprops).then(AMap => {
        that.map = AMap
        that.map.on('click', that.clickHandler) // 地圖點擊事件 可獲取經(jīng)緯度等信息
        initScaleTools(that.map, true, false)
        searchAutocomplete(that.map, 'tipinput', function (event) {
          that.handleStartSelect(event)
        })
      })

七、效果

到此這篇關(guān)于Vue引入高德地圖實現(xiàn)流程分步講解的文章就介紹到這了,更多相關(guān)Vue高德地圖內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • Vue.JS項目中5個經(jīng)典Vuex插件

    Vue.JS項目中5個經(jīng)典Vuex插件

    在本文中,將向你展示5個特性,你可以通過 Vuex 插件輕松地添加到下一個項目中。一起來學(xué)習(xí)下。
    2017-11-11
  • 使用vite構(gòu)建vue3項目的方法步驟

    使用vite構(gòu)建vue3項目的方法步驟

    本文主要介紹了使用vite構(gòu)建vue3項目的方法步驟,vite支持性肯定比傳統(tǒng)的打包工具好,下面我們就來介紹一下使用vite構(gòu)建vue3項目,感興趣的可以參考一下
    2023-05-05
  • vue css 引入asstes中的圖片無法顯示的四種解決方法

    vue css 引入asstes中的圖片無法顯示的四種解決方法

    這篇文章主要介紹了vue css 引入asstes中的圖片 無法顯示的幾種解決方案,本文給出了四種解決方法,每種方法給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-03-03
  • vue中關(guān)于el-popover的使用

    vue中關(guān)于el-popover的使用

    這篇文章主要介紹了vue中關(guān)于el-popover的使用方式,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2023-04-04
  • 深入淺析vue-cli@3.0 使用及配置說明

    深入淺析vue-cli@3.0 使用及配置說明

    這篇文章主要介紹了vue-cli@3.0 使用及配置說明,非常不錯,具有一定的參考借鑒價值,需要的朋友可以參考下
    2019-05-05
  • 在Vue3中實現(xiàn)懶加載功能的代碼示例

    在Vue3中實現(xiàn)懶加載功能的代碼示例

    在現(xiàn)代前端開發(fā)中,懶加載是一種提高應(yīng)用性能和用戶體驗的重要技術(shù),尤其是在處理較大圖片或長列表數(shù)據(jù)時,本文將使用 Vue 3 和其新推出的 setup 語法糖來實現(xiàn)懶加載功能,并提供具體的示例代碼,需要的朋友可以參考下
    2024-09-09
  • vue?async?await?promise等待異步接口執(zhí)行完畢再進行下步操作教程

    vue?async?await?promise等待異步接口執(zhí)行完畢再進行下步操作教程

    在Vue中可以使用異步函數(shù)和await關(guān)鍵字來控制上一步執(zhí)行完再執(zhí)行下一步,這篇文章主要給大家介紹了關(guān)于vue?async?await?promise等待異步接口執(zhí)行完畢再進行下步操作的相關(guān)資料,需要的朋友可以參考下
    2023-12-12
  • Vue.js之$emit用法案例詳解

    Vue.js之$emit用法案例詳解

    這篇文章主要介紹了Vue.js之$emit用法案例詳解,本篇文章通過簡要的案例,講解了該項技術(shù)的了解與使用,以下就是詳細內(nèi)容,需要的朋友可以參考下
    2021-09-09
  • vue組件數(shù)據(jù)傳遞、父子組件數(shù)據(jù)獲取,slot,router路由功能示例

    vue組件數(shù)據(jù)傳遞、父子組件數(shù)據(jù)獲取,slot,router路由功能示例

    這篇文章主要介紹了vue組件數(shù)據(jù)傳遞、父子組件數(shù)據(jù)獲取,slot,router路由功能,結(jié)合實例形式分析了vue.js組件數(shù)據(jù)傳遞、路由相關(guān)概念、原理及相關(guān)操作技巧,需要的朋友可以參考下
    2019-03-03
  • Vue數(shù)據(jù)驅(qū)動模擬實現(xiàn)5

    Vue數(shù)據(jù)驅(qū)動模擬實現(xiàn)5

    這篇文章主要介紹了Vue數(shù)據(jù)驅(qū)動模擬實現(xiàn)的相關(guān)資料,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-01-01

最新評論