您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“vue中怎么調(diào)用百度地圖獲取經(jīng)緯度”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“vue中怎么調(diào)用百度地圖獲取經(jīng)緯度”吧!
項(xiàng)目中,需要實(shí)現(xiàn)獲取當(dāng)前位置的經(jīng)緯度,或者搜索某個(gè)位置并獲取經(jīng)緯度信息,我使用的的是vue,地圖使用的是百度地圖。
默認(rèn)自動(dòng)獲取當(dāng)前位置經(jīng)緯度
拖動(dòng)小紅標(biāo) 獲取經(jīng)緯度
關(guān)鍵詞 查詢獲取經(jīng)緯度
首先,我們需要取百度官方申請(qǐng)一個(gè)地圖api秘鑰,https://lbsyun.baidu.com/apiconsole/key 進(jìn)入后在應(yīng)用管理,我的應(yīng)用去申請(qǐng)即可。
申請(qǐng)好以后,我們打開vue項(xiàng)目中public文件下的index.html文件,拼接百度AK值并引入
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=WFKACU6v7aiUdnkgtMCqdWBZC68KpUXv"></script>
如上所示,紅色區(qū)域?yàn)锳K值,自行拼接自己的,可以設(shè)置權(quán)限為公開或者針對(duì)網(wǎng)址白名單。
<script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=WFKACU6v7aiUdnkgtMCqdWBZC68KpUXv"></script>
我使用了elementui的彈窗,輸入框,提示,如果你沒(méi)使用elementui,記得更換哦!
HTML代碼
<template> <div> <el-dialog @close="clearDialog" :close-on-click-modal="false" :title="text" :visible.sync="popup" width="30%" > <div class="form-layer"> <el-form label-width="100px" size="mini"> <el-form-item label="獲取定位"> <el-button type="primary" @click="fixedPos">重新定位</el-button> </el-form-item> <el-form-item label="當(dāng)前緯度"> <p>{{latitude}}</p> </el-form-item> <el-form-item label="當(dāng)前經(jīng)度"> <p>{{longitude}}</p> </el-form-item> <el-form-item> <div class="f-a-c"> <el-input v-model="keyWords" placeholder="請(qǐng)輸入地區(qū)" ></el-input> <el-button type="primary" @click="setPlace" :disabled="!keyWords">查詢</el-button> </div> </el-form-item> </el-form> <div id="map"></div> </div> <div slot="footer" class="dialog-footer"> <el-button size="small" type="primary" v-if="type != '2'" @click="btnSubmit()" >確 認(rèn)</el-button > <el-button size="small" @click="popup = false">取 消</el-button> </div> </el-dialog> </div> </template>
JS代碼
<script> export default { name: "mapView", data() { return { map: null, local: null, mk: null, latitude: '', longitude: '', keyWords: '' }; }, methods: { // 打開彈窗,name為彈窗名稱 async openDialog(name) { this.text = name; this.popup = true; this.initMap(); }, // 確認(rèn) btnSubmit() { let key = { latitude: this.latitude, longitude: this.longitude } // 打印經(jīng)緯度 console.log(key); this.popup = false; }, initMap() { this.$nextTick(() => { this.map = new BMap.Map("map"); let point = new BMap.Point(116.404, 39.915); this.map.centerAndZoom(point, 12); this.map.enableScrollWheelZoom(true); // 開啟鼠標(biāo)滾輪縮放 this.map.addControl(new BMap.NavigationControl()); this.fixedPos(); }); }, // 點(diǎn)擊定位-定位到當(dāng)前位置 fixedPos() { const _this = this; const geolocation = new BMap.Geolocation(); this.confirmLoading = true; geolocation.getCurrentPosition(function (r) { if (this.getStatus() == BMAP_STATUS_SUCCESS) { _this.handleMarker(_this, r.point); let myGeo = new BMap.Geocoder(); myGeo.getLocation( new BMap.Point(r.point.lng, r.point.lat), function (result) { _this.confirmLoading = false; if (result) { _this.latitude = result.point.lat; _this.longitude = result.point.lng; } } ); } else { _this.$message.error("failed" + this.getStatus()); } }); }, // 搜索地址 setPlace() { this.local = new BMap.LocalSearch(this.map, { onSearchComplete: this.searchPlace, }); this.local.search(this.keyWords); }, searchPlace() { if (this.local.getResults() != undefined) { this.map.clearOverlays(); //清除地圖上所有覆蓋物 if (this.local.getResults().getPoi(0)) { let point = this.local.getResults().getPoi(0).point; //獲取第一個(gè)智能搜索的結(jié)果 this.map.centerAndZoom(point, 18); this.handleMarker(this, point); console.log("經(jīng)度:" + point.lng + "--" + "緯度" + point.lat); this.latitude = point.lat; this.longitude = point.lng; } else { this.$message.error("未匹配到地點(diǎn)!"); } } else { this.$message.error("未找到搜索結(jié)果!"); } }, // 設(shè)置標(biāo)注 handleMarker(obj, point) { let that = this; obj.mk = new BMap.Marker(point); obj.map.addOverlay(obj.mk); obj.mk.enableDragging(); // 可拖拽 obj.mk.addEventListener("dragend", function (e) { // 監(jiān)聽(tīng)標(biāo)注的拖拽,獲取拖拽后的經(jīng)緯度 that.latitude = e.point.lat; that.longitude = e.point.lng; }); obj.map.panTo(point); }, } }; </script>
CSS代碼
<style scoped> .form-layer { width: 100%; } #map { margin-top: 30px; width: 100%; height: 300px; border: 1px solid gray; box-sizing: border-box; overflow: hidden; } /deep/ .el-dialog { min-width: 550px; } /deep/ .el-dialog__body { padding: 10px; } </style>
完整代碼
<template> <div> <el-dialog @close="clearDialog" :close-on-click-modal="false" :title="text" :visible.sync="popup" width="30%" > <div class="form-layer"> <el-form label-width="100px" size="mini"> <el-form-item label="獲取定位"> <el-button type="primary" @click="fixedPos">重新定位</el-button> </el-form-item> <el-form-item label="當(dāng)前緯度"> <p>{{latitude}}</p> </el-form-item> <el-form-item label="當(dāng)前經(jīng)度"> <p>{{longitude}}</p> </el-form-item> <el-form-item> <div class="f-a-c"> <el-input v-model="keyWords" placeholder="請(qǐng)輸入地區(qū)" ></el-input> <el-button type="primary" @click="setPlace" :disabled="!keyWords">查詢</el-button> </div> </el-form-item> </el-form> <div id="map"></div> </div> <div slot="footer" class="dialog-footer"> <el-button size="small" type="primary" v-if="type != '2'" @click="btnSubmit()" >確 認(rèn)</el-button > <el-button size="small" @click="popup = false">取 消</el-button> </div> </el-dialog> </div> </template> <script> export default { name: "mapView", data() { return { map: null, local: null, mk: null, latitude: '', longitude: '', keyWords: '' }; }, methods: { // 打開彈窗,name為彈窗名稱 async openDialog(name) { this.text = name; this.popup = true; this.initMap(); }, // 確認(rèn) btnSubmit() { let key = { latitude: this.latitude, longitude: this.longitude } // 打印經(jīng)緯度 console.log(key); this.popup = false; }, initMap() { this.$nextTick(() => { this.map = new BMap.Map("map"); let point = new BMap.Point(116.404, 39.915); this.map.centerAndZoom(point, 12); this.map.enableScrollWheelZoom(true); // 開啟鼠標(biāo)滾輪縮放 this.map.addControl(new BMap.NavigationControl()); this.fixedPos(); }); }, // 點(diǎn)擊定位-定位到當(dāng)前位置 fixedPos() { const _this = this; const geolocation = new BMap.Geolocation(); this.confirmLoading = true; geolocation.getCurrentPosition(function (r) { if (this.getStatus() == BMAP_STATUS_SUCCESS) { _this.handleMarker(_this, r.point); let myGeo = new BMap.Geocoder(); myGeo.getLocation( new BMap.Point(r.point.lng, r.point.lat), function (result) { _this.confirmLoading = false; if (result) { _this.latitude = result.point.lat; _this.longitude = result.point.lng; } } ); } else { _this.$message.error("failed" + this.getStatus()); } }); }, // 搜索地址 setPlace() { this.local = new BMap.LocalSearch(this.map, { onSearchComplete: this.searchPlace, }); this.local.search(this.keyWords); }, searchPlace() { if (this.local.getResults() != undefined) { this.map.clearOverlays(); //清除地圖上所有覆蓋物 if (this.local.getResults().getPoi(0)) { let point = this.local.getResults().getPoi(0).point; //獲取第一個(gè)智能搜索的結(jié)果 this.map.centerAndZoom(point, 18); this.handleMarker(this, point); console.log("經(jīng)度:" + point.lng + "--" + "緯度" + point.lat); this.latitude = point.lat; this.longitude = point.lng; } else { this.$message.error("未匹配到地點(diǎn)!"); } } else { this.$message.error("未找到搜索結(jié)果!"); } }, // 設(shè)置標(biāo)注 handleMarker(obj, point) { let that = this; obj.mk = new BMap.Marker(point); obj.map.addOverlay(obj.mk); obj.mk.enableDragging(); // 可拖拽 obj.mk.addEventListener("dragend", function (e) { // 監(jiān)聽(tīng)標(biāo)注的拖拽,獲取拖拽后的經(jīng)緯度 that.latitude = e.point.lat; that.longitude = e.point.lng; }); obj.map.panTo(point); }, } }; </script> <style scoped> .form-layer { width: 100%; } #map { margin-top: 30px; width: 100%; height: 300px; border: 1px solid gray; box-sizing: border-box; overflow: hidden; } /deep/ .el-dialog { min-width: 550px; } /deep/ .el-dialog__body { padding: 10px; } </style>
到此,相信大家對(duì)“vue中怎么調(diào)用百度地圖獲取經(jīng)緯度”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。