第一步 去高德地图开放平台申请密钥 高德地图开放平台
第二部 在vue-cli项目目录结构
里面多了config文件夹和 utils文件夹
config.js里面是这样的 主要是导出密钥
// 高德地图 key export const MapKey = '你的密钥key' // 地图限定城市 export const MapCityName = '武汉'
utils文件夹里面 新建路一个remoteLoad.js
主要是动态创建script标签 封装了一个函数 传入URL地址()
export default function remoteLoad (url, hasCallback) { return createScript(url) /** * 创建script * @param url * @returns {Promise} */ function createScript (url) { var scriptElement = document.createElement('script') document.body.appendChild(scriptElement) var promise = new Promise((resolve, reject) => { scriptElement.addEventListener('load', e => { removeScript(scriptElement) if (!hasCallback) { resolve(e) } }, false) scriptElement.addEventListener('error', e => { removeScript(scriptElement) reject(e) }, false) if (hasCallback) { window.____callback____ = function () { resolve() window.____callback____ = null } } }) if (hasCallback) { url += '&callback=____callback____' } scriptElement.src = url return promise } /** * 移除script标签 * @param scriptElement script dom */ function removeScript (scriptElement) { document.body.removeChild(scriptElement) } }
第三步 在Home组件中
<template> <div class="m-map"> <div class="search" v-if="placeSearch"> <input type="text" placeholder="请输入关键字" v-model="searchKey"> <button type="button" @click="handleSearch">搜索</button> <div id="js-result" v-show="searchKey" class="result"></div> </div> <div id="js-container" class="map"></div> </div> </template> <script> import remoteLoad from '@/utils/remoteLoad.js' import { MapKey, MapCityName } from '@/config/config' export default { props: ['lat', 'lng'], data () { return { searchKey: '', placeSearch: null, dragStatus: false, AMapUI: null, AMap: null } }, watch: { searchKey () { if (this.searchKey === '') { this.placeSearch.clear() } } }, methods: { // 搜索 handleSearch () { if (this.searchKey) { this.placeSearch.search(this.searchKey) } }, // 实例化地图 initMap () { // 加载PositionPicker,loadUI的路径参数为模块名中 'ui/' 之后的部分 let AMapUI = this.AMapUI = window.AMapUI let AMap = this.AMap = window.AMap AMapUI.loadUI(['misc/PositionPicker'], PositionPicker => { let mapConfig = { zoom: 16, cityName: MapCityName } if (this.lat && this.lng) { mapConfig.center = [this.lng, this.lat] } let map = new AMap.Map('js-container', mapConfig) // 加载地图搜索插件 AMap.service('AMap.PlaceSearch', () => { this.placeSearch = new AMap.PlaceSearch({ pageSize: 5, pageIndex: 1, citylimit: true, city: MapCityName, map: map, panel: 'js-result' }) }) // 启用工具条 AMap.plugin(['AMap.ToolBar'], function () { map.addControl(new AMap.ToolBar({ position: 'RB' })) }) // 创建地图拖拽 let positionPicker = new PositionPicker({ mode: 'dragMap', // 设定为拖拽地图模式,可选'dragMap'、'dragMarker',默认为'dragMap' map: map // 依赖地图对象 }) // 拖拽完成发送自定义 drag 事件 positionPicker.on('success', positionResult => { // 过滤掉初始化地图后的第一次默认拖放 if (!this.dragStatus) { this.dragStatus = true } else { this.$emit('drag', positionResult) } }) // 启动拖放 positionPicker.start() }) } }, async created () { // 已载入高德地图API,则直接初始化地图 if (window.AMap && window.AMapUI) { this.initMap() // 未载入高德地图API,则先载入API再初始化 } else { await remoteLoad(`http://webapi.amap.com/maps"css"> .m-map{ min-width: 500px; min-height: 300px; position: relative; } .m-map .map{ width: 100%; height: 100%; } .m-map .search{ position: absolute; top: 10px; left: 10px; width: 285px; z-index: 1; } .m-map .search input{ width: 180px; border: 1px solid #ccc; line-height: 20px; padding: 5px; outline: none; } .m-map .search button{ line-height: 26px; background: #fff; border: 1px solid #ccc; width: 50px; text-align: center; } .m-map .result{ max-height: 300px; overflow: auto; margin-top: 10px; } </style>
第四步 在app.vue中 导入组件
<template> <div id="app"> <div class="g-wraper"> <div class="m-part"> <mapDrag @drag="dragMap" class="mapbox"></mapDrag> </div> </div> </div> </template> <script> import mapDrag from './components/Home.vue' export default { name: 'app', components: { mapDrag }, data () { return { dragData: { lng: null, lat: null, address: null, nearestJunction: null, nearestRoad: null, nearestPOI: null } } }, methods: { dragMap (data) { console.log(data) this.dragData = { lng: data.position.lng, lat: data.position.lat, address: data.address, nearestJunction: data.nearestJunction, nearestRoad: data.nearestRoad, nearestPOI: data.nearestPOI } } } } </script> <style> body{ margin: 0; } .page-header{ color: #fff; text-align: center; background: #159957; background-image: -webkit-linear-gradient(330deg,#155799,#159957); background-image: linear-gradient(120deg,#155799,#159957); padding: 3rem 4rem; margin-bottom: 30px; } .page-header h1{ margin: 0; font-size: 40px; } .page-header p{ color: #ccc; margin: 0; margin-bottom: 30px; } .page-header a{ display: inline-block; border: 1px solid #fff; margin-right: 10px; line-height: 40px; padding: 0 20px; border-radius: 4px; color: #fff; text-decoration: none; transition: all .3s; } .page-header a:hover{ background: #fff; color: #333; } .g-wraper{ width: 1000px; margin: 0 auto; color: #666; font-size: 16px; line-height: 30px; } .m-part{ margin-bottom: 30px; } .m-part::after{ content: ''; display: block; clear: both; } .m-part .title{ font-size: 30px; line-height: 60px; margin-bottom: 10px; color: #333; } .m-part .mapbox{ width: 600px; height: 400px; margin-bottom: 20px; float: left; } .m-part .info{ margin: 0; padding: 0; list-style: none; line-height: 30px; margin-left: 620px; } .m-part .info span{ display: block; color: #999; } .m-part ol{ line-height: 40px; margin-left: 0; padding-left: 0; } .m-part pre{ padding: 10px 20px; line-height: 30px; border-radius: 3px; box-shadow: 0 0 15px rgba(0,0,0,.5); } .m-footer{ background: #eee; line-height: 60px; text-align: center; color: #999; font-size: 12px; } .m-footer a{ margin: 0 5px; color: #999; text-decoration: none; } </style>
上面 地图初始化渲染的方法 直接拿别人封装好的东西
最后运行后
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
标签:
vue-cli,高德地图
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
白云城资源网 Copyright www.dyhadc.com
暂无“vue-cli中使用高德地图的方法示例”评论...
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
2024年12月22日
2024年12月22日
- 小骆驼-《草原狼2(蓝光CD)》[原抓WAV+CUE]
- 群星《欢迎来到我身边 电影原声专辑》[320K/MP3][105.02MB]
- 群星《欢迎来到我身边 电影原声专辑》[FLAC/分轨][480.9MB]
- 雷婷《梦里蓝天HQⅡ》 2023头版限量编号低速原抓[WAV+CUE][463M]
- 群星《2024好听新歌42》AI调整音效【WAV分轨】
- 王思雨-《思念陪着鸿雁飞》WAV
- 王思雨《喜马拉雅HQ》头版限量编号[WAV+CUE]
- 李健《无时无刻》[WAV+CUE][590M]
- 陈奕迅《酝酿》[WAV分轨][502M]
- 卓依婷《化蝶》2CD[WAV+CUE][1.1G]
- 群星《吉他王(黑胶CD)》[WAV+CUE]
- 齐秦《穿乐(穿越)》[WAV+CUE]
- 发烧珍品《数位CD音响测试-动向效果(九)》【WAV+CUE】
- 邝美云《邝美云精装歌集》[DSF][1.6G]
- 吕方《爱一回伤一回》[WAV+CUE][454M]