在vue3項(xiàng)目中如何使用新版高德地圖,本文詳細(xì)介紹vue3項(xiàng)目中使用高德地圖的方法。
1、首先你要注冊(cè)好賬號(hào)登錄
2、獲取key和密鑰
自2021年12月02日升級(jí),升級(jí)之后所申請(qǐng)的 key 必須配備安全密鑰 jscode 一起使用
NPM方式安裝和使用(基礎(chǔ)版):
按 NPM 方式安裝使用 Loader :
npm i @amap/amap-jsapi-loader --save
在頁(yè)面中通過(guò)NPM 方式安裝的使用 :
<template> <div class="app-container"> <div style="background-color: #ffffff;"> <div id="container"></div> </div> </div> </template> <script setup> import AMapLoader from '@amap/amap-jsapi-loader'; /*在Vue3中使用時(shí),需要引入Vue3中的shallowRef方法(使用shallowRef進(jìn)行非深度監(jiān)聽(tīng), 因?yàn)樵赩ue3中所使用的Proxy攔截操作會(huì)改變JSAPI原生對(duì)象,所以此處需要區(qū)別Vue2使用方式對(duì)地圖對(duì)象進(jìn)行非深度監(jiān)聽(tīng), 否則會(huì)出現(xiàn)問(wèn)題,建議JSAPI相關(guān)對(duì)象采用非響應(yīng)式的普通對(duì)象來(lái)存儲(chǔ))*/ import { shallowRef } from '@vue/reactivity'; import {ref} from "vue"; // const map = shallowRef(null); const path = ref([]); const current_position = ref([]); function initMap() { window._AMapSecurityConfig = { securityJsCode: '8e920f73eb2e6880a92ea6662eefc476', } AMapLoader.load({ key:"e4e3d44a98350790a1493450032bbec5", // 申請(qǐng)好的Web端開(kāi)發(fā)者Key,首次調(diào)用 load 時(shí)必填 version:"2.0", // 指定要加載的 JSAPI 的版本,缺省時(shí)默認(rèn)為 1.4.15 plugins:[''], // 需要使用的的插件列表,如比例尺'AMap.Scale'等 }).then((AMap)=>{ const map = new AMap.Map("container",{ //設(shè)置地圖容器id viewMode:"3D", //是否為3D地圖模式 zoom:13, //初始化地圖級(jí)別 center:[113.808299,34.791787], //初始化地圖中心點(diǎn)位置 }); }).catch(e=>{ console.log(e); }) } initMap() </script> <style> #container{ padding:0px; margin: 0px; width: 100%; height: 800px; } </style>
完整代碼:
<template> <div class="app-container"> <div style="background-color: #ffffff;"> <div id="container"></div> </div> </div> </template> <script setup> import AMapLoader from '@amap/amap-jsapi-loader'; /*在Vue3中使用時(shí),需要引入Vue3中的shallowRef方法(使用shallowRef進(jìn)行非深度監(jiān)聽(tīng), 因?yàn)樵赩ue3中所使用的Proxy攔截操作會(huì)改變JSAPI原生對(duì)象,所以此處需要區(qū)別Vue2使用方式對(duì)地圖對(duì)象進(jìn)行非深度監(jiān)聽(tīng), 否則會(huì)出現(xiàn)問(wèn)題,建議JSAPI相關(guān)對(duì)象采用非響應(yīng)式的普通對(duì)象來(lái)存儲(chǔ))*/ import { shallowRef } from '@vue/reactivity'; import {ref} from "vue"; // const map = shallowRef(null); const path = ref([]); const current_position = ref([]); function initMap() { window._AMapSecurityConfig = { securityJsCode: '8e920f73eb2e6880a92ea6662eefc476', } AMapLoader.load({ key:"e4e3d44a98350790a1493450032bbec5", // 申請(qǐng)好的Web端開(kāi)發(fā)者Key,首次調(diào)用 load 時(shí)必填 version:"2.0", // 指定要加載的 JSAPI 的版本,缺省時(shí)默認(rèn)為 1.4.15 // plugins:[''], // 需要使用的的插件列表,如比例尺'AMap.Scale'等 }).then((AMap)=>{ const map = new AMap.Map("container",{ //設(shè)置地圖容器id viewMode:"3D", //是否為3D地圖模式 zoom:13, //初始化地圖級(jí)別 center:[113.808299,34.791787], //初始化地圖中心點(diǎn)位置 }); // 添加插件 AMap.plugin(["AMap.ToolBar", "AMap.Scale", "AMap.HawkEye","AMap.Geolocation","AMap.MapType","AMap.MouseTool"], function () { //異步同時(shí)加載多個(gè)插件 // 添加地圖插件 map.addControl(new AMap.ToolBar()); // 工具條控件;范圍選擇控件 map.addControl(new AMap.Scale()); // 顯示當(dāng)前地圖中心的比例尺 map.addControl(new AMap.HawkEye()); // 顯示縮略圖 map.addControl(new AMap.Geolocation()); // 定位當(dāng)前位置 map.addControl(new AMap.MapType()); // 實(shí)現(xiàn)默認(rèn)圖層與衛(wèi)星圖,實(shí)時(shí)交通圖層之間切換 // 以下是鼠標(biāo)工具插件 const mouseTool = new AMap.MouseTool(map); // mouseTool.rule();// 用戶(hù)手動(dòng)繪制折線圖,測(cè)量距離 mouseTool.measureArea(); // 測(cè)量面積 }); // 單擊 map.on('click',(e) => { // lng ==> 經(jīng)度值 lat => 維度值 current_position.value = [e.lnglat.lng,e.lnglat.lat]; path.value.push([e.lnglat.lng,e.lnglat.lat]); // addMarker(); // addPolyLine(); }) // 實(shí)例化點(diǎn)標(biāo)記 // 第一種(封成函數(shù)來(lái)觸發(fā)) function addMarker() { const marker = new AMap.Marker({ icon: "//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png", position: current_position.value, // 這里我們通過(guò)上面的點(diǎn)擊獲取經(jīng)緯度坐標(biāo),實(shí)時(shí)添加標(biāo)記 // 通過(guò)設(shè)置 offset 來(lái)添加偏移量 offset: new AMap.Pixel(-26, -54), }); marker.setMap(map); } // 第二種 直接寫(xiě)死 position 的經(jīng)緯度值 /*const marker = new AMap.Marker({ icon: "//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png", position: [113.808299,34.791787], // 通過(guò)設(shè)置 offset 來(lái)添加偏移量 offset: new AMap.Pixel(-26, -54), }); marker.setMap(map);*/ // 折線 function addPolyLine() { const polyline = new AMap.Polyline({ path: path.value, isOutline: true, outlineColor: "#ffeeff", borderWeight: 1, strokeColor: "#3366FF", strokeOpacity: 0.6, strokeWeight: 5, // 折線樣式還支持 'dashed' strokeStyle: "solid", // strokeStyle是dashed時(shí)有效 // strokeDasharray: [10, 5], lineJoin: "round", lineCap: "round", zIndex: 50, }); map.add([polyline]); } }).catch(e=>{ console.log(e); }) } initMap() </script> <style> #container{ padding:0px; margin: 0px; width: 100%; height: 800px; } </style>
地圖插件效果圖:
實(shí)例化點(diǎn)標(biāo)記 :
第一種方式效果:
第二種方式效果:
矢量圖 --> 折線:
感謝各位的閱讀,以上就是“在vue3項(xiàng)目中如何使用新版高德地圖”的內(nèi)容了,經(jīng)過(guò)本文的學(xué)習(xí)后,相信大家對(duì)在vue3項(xiàng)目中如何使用新版高德地圖這一問(wèn)題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。