uniapp接入腾讯地图实现定位导航功能。

2023-10-25 05:31

本文主要是介绍uniapp接入腾讯地图实现定位导航功能。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

打开腾讯地图的官网注册账号登陆进入,滑入我的头像开发者信息:https://lbs.qq.com/service/webService/webServiceGuide/webServiceOverview

2 找到添加的应用,添加key

3 webService API 查询

4 然后在manifest.json 中设置如下,以及小程序id

uniapp用到的api

uni.getLocation 获取当前的地理位置、速度。当用户离开小程序后,此接口无法调用。
uni.openLocation 使用微信内置地图查看位置
this.mapDom = uni.createMapContext('mapDom') 获取map id=mapDom 的实例
this.mapDom.includePoints includePoints 缩放视野展示所有经纬度

bug uni.getLocation 不触发直接将基础库调整为 2.17.0

首页代码

<template><view class=""><div class="header"><view class="content">你要去哪里:<view class="text-area"><text @click="toMap()" class="title">{{title}}</text></view></view><input @input="changeCity" v-model="city" type="text" height="50" /><ul v-show="isShowSearch"><li @click="getCityHandle(item.address)" v-for="item in suggestionData" :key="item.id">{{item.address}}</li></ul></div></view></template><script>import {Debounce} from '../../utils/debounce.js'export default {data() {return {title: '出发',key: '2J4BZ-3CFEV-OYSPG-UDFGU-ONNNS-63FOT',city: '河南省鹤壁市浚县',locationConfig: null,noClick: true,suggestionData: null,isShowSearch:false}},onLoad() {},methods: {toMap() {this.getPosition((location) => {uni.navigateTo({url: `/pages/map/index?lat=${ location.lat}&lng=${ location.lng}&city=${this.city}`})})},getPosition(callback) {uni.request({url: `https://apis.map.qq.com/ws/geocoder/v1/?address=${this.city}&key=${this.key}`,success: ({data}) => {callback(data.result.location)},})},getCityHandle(val) {this.city = valthis.isShowSearch = false},changeCity: Debounce(function(e) {this.isShowSearch = trueconsole.log(432);this.city = e.target.valueuni.request({url: `https://apis.map.qq.com/ws/place/v1/suggestion?key=${this.key}&keyword=${this.city}`,success: ({data}) => {console.log(423, data.data);this.suggestionData = data.data},})}, 1000)}}
</script><style>ul {height: auto;width: 90%;overflow: scroll;}ul li {margin: 2px;width: 100%;height: auto;border-radius: 10upx;background-color: #ccc;padding: 10upx;box-sizing: border-box;}.content {display: flex;margin-bottom: 20upx;}.logo {height: 200rpx;width: 200rpx;margin-top: 200rpx;margin-left: auto;margin-right: auto;margin-bottom: 50rpx;}.text-area {display: flex;justify-content: center;border: 1px solid #ccc;width: 30%;border-radius: 10upx;}.title {font-size: 36rpx;color: #8f8f94;}.header {width: 100%;height: 30upx;padding: 30upx;}.header input {width: 90%;border: 1px solid #ccc;border-radius: 10upx;}
</style>

地图页面

<template><view class=""><view class="page-body"><view class="page-section page-section-gap"><map style="width: 100%; height: 75vh;" id="mapDom"show-location :latitude="latitude" :longitude="longitude" :markers="covers"show-location@updated="lodingMap"></map><div @click="backPositionHandle" class="positionIcon"></div></view></view><view class="footer"><h3>你的目的地</h3><view class="descriptive">{{city}}</view><button class="position" @click="getHereHandle">到这里</button></view></view></template><script>export default {data() {return {latitude: 0,longitude: 0,covers: [{id: 1,width: 50,height: 50,latitude: 0,longitude: 0,iconPath: '../../static/1.gif'}, ],city:'',flag:false}},onReady() {this.mapDom = uni.createMapContext('mapDom')console.log(423,this.mapDom);},onLoad(option) {this.covers[0].latitude = Number(option.lat)this.covers[0].longitude = Number(option.lng)this.city = option.city//  uni.getLocation 不触发直接将基础库调整为 2.17.0uni.getLocation({type: 'gcj02',success: (res) => {console.log('当前位置的经度:' + res.longitude);console.log('当前位置的纬度:' + res.latitude);this.latitude = Number(res.latitude)this.longitude = Number(res.longitude)// 获取位置成功之后进行缩放,直观的看到坐标// includePoints 缩放视野展示所有经纬度this.mapDom.includePoints({padding:[140,50,140,50],points:[//第一个是我的位置{latitude:this.latitude,longitude:this.longitude},// 第二个是店铺的位置{latitude:this.covers[0].latitude,longitude:this.covers[0].longitude}]})}});},methods:{// 地图初始化完成后触发lodingMap() {console.log(423);this.flag = true},getHereHandle() {if(!this.flag) return// let plugin = requirePlugin('routePlan');// let key = '2J4BZ-3CFEV-OYSPG-UDFGU-ONNNS-63FOT';  //使用在腾讯位置服务申请的key// let referer = 'navigateMap';   //调用插件的app的名称// let endPoint = JSON.stringify({  //终点//   'name': '北京西站',//   'latitude': 39.894806,//   'longitude': 116.321592// });// wx.navigateTo({//   url: 'plugin://routePlan/index?key=' + key + '&referer=' + referer + '&endPoint=' + endPoint// });uni.openLocation({latitude:this.covers[0].latitude,    //维度longitude: this.covers[0].longitude, //经度name: this.city,    //目的地定位名称scale: 15,    //缩放比例// address: "河南省鹤壁市浚县"    //导航详细地址})},backPositionHandle() {if(!this.flag) returnthis.mapDom.moveToLocation();}}}
</script><style>.page-section-gap {position: relative;}.footer{width: 100%;height: 25vh;background-color: #fff;box-sizing: border-box;padding: 20upx  40upx 0 40upx;display: flex;flex-direction: column;border-radius: 22upx;}.position{height: 90upx;line-height:90upx;background-color: #3d89f0;color: #fff;width: 100%;}.descriptive{font-size: 30upx;margin: 30upx 0 30upx 0;}.positionIcon {width: 40upx;height: 40upx;border-radius: 50%;position: absolute;bottom: 40upx;right: 40upx;background-image: url('https://tse2-mm.cn.bing.net/th/id/OIP-C.fCPxTGJccQvVdqrNFqrMRwHaHa?pid=ImgDet&rs=1');background-size: 100% 100%;}
</style>

/utils/debounce.js 防抖方法

export  const Debounce = (fn, wait) => {let delay = wait|| 500let timerreturn function () {let args = arguments;if (timer) {clearTimeout(timer)}let callNow = !timertimer = setTimeout(() => {timer = null}, delay)if (callNow) fn.apply(this, args)}
}

这篇关于uniapp接入腾讯地图实现定位导航功能。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/280339

相关文章

使用Python实现IP地址和端口状态检测与监控

《使用Python实现IP地址和端口状态检测与监控》在网络运维和服务器管理中,IP地址和端口的可用性监控是保障业务连续性的基础需求,本文将带你用Python从零打造一个高可用IP监控系统,感兴趣的小伙... 目录概述:为什么需要IP监控系统使用步骤说明1. 环境准备2. 系统部署3. 核心功能配置系统效果展

Python实现微信自动锁定工具

《Python实现微信自动锁定工具》在数字化办公时代,微信已成为职场沟通的重要工具,但临时离开时忘记锁屏可能导致敏感信息泄露,下面我们就来看看如何使用Python打造一个微信自动锁定工具吧... 目录引言:当微信隐私遇到自动化守护效果展示核心功能全景图技术亮点深度解析1. 无操作检测引擎2. 微信路径智能获

Python中pywin32 常用窗口操作的实现

《Python中pywin32常用窗口操作的实现》本文主要介绍了Python中pywin32常用窗口操作的实现,pywin32主要的作用是供Python开发者快速调用WindowsAPI的一个... 目录获取窗口句柄获取最前端窗口句柄获取指定坐标处的窗口根据窗口的完整标题匹配获取句柄根据窗口的类别匹配获取句

在 Spring Boot 中实现异常处理最佳实践

《在SpringBoot中实现异常处理最佳实践》本文介绍如何在SpringBoot中实现异常处理,涵盖核心概念、实现方法、与先前查询的集成、性能分析、常见问题和最佳实践,感兴趣的朋友一起看看吧... 目录一、Spring Boot 异常处理的背景与核心概念1.1 为什么需要异常处理?1.2 Spring B

Python位移操作和位运算的实现示例

《Python位移操作和位运算的实现示例》本文主要介绍了Python位移操作和位运算的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录1. 位移操作1.1 左移操作 (<<)1.2 右移操作 (>>)注意事项:2. 位运算2.1

如何在 Spring Boot 中实现 FreeMarker 模板

《如何在SpringBoot中实现FreeMarker模板》FreeMarker是一种功能强大、轻量级的模板引擎,用于在Java应用中生成动态文本输出(如HTML、XML、邮件内容等),本文... 目录什么是 FreeMarker 模板?在 Spring Boot 中实现 FreeMarker 模板1. 环

Qt实现网络数据解析的方法总结

《Qt实现网络数据解析的方法总结》在Qt中解析网络数据通常涉及接收原始字节流,并将其转换为有意义的应用层数据,这篇文章为大家介绍了详细步骤和示例,感兴趣的小伙伴可以了解下... 目录1. 网络数据接收2. 缓冲区管理(处理粘包/拆包)3. 常见数据格式解析3.1 jsON解析3.2 XML解析3.3 自定义

使用Python和Pyecharts创建交互式地图

《使用Python和Pyecharts创建交互式地图》在数据可视化领域,创建交互式地图是一种强大的方式,可以使受众能够以引人入胜且信息丰富的方式探索地理数据,下面我们看看如何使用Python和Pyec... 目录简介Pyecharts 简介创建上海地图代码说明运行结果总结简介在数据可视化领域,创建交互式地

SpringMVC 通过ajax 前后端数据交互的实现方法

《SpringMVC通过ajax前后端数据交互的实现方法》:本文主要介绍SpringMVC通过ajax前后端数据交互的实现方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价... 在前端的开发过程中,经常在html页面通过AJAX进行前后端数据的交互,SpringMVC的controll

Spring Security自定义身份认证的实现方法

《SpringSecurity自定义身份认证的实现方法》:本文主要介绍SpringSecurity自定义身份认证的实现方法,下面对SpringSecurity的这三种自定义身份认证进行详细讲解,... 目录1.内存身份认证(1)创建配置类(2)验证内存身份认证2.JDBC身份认证(1)数据准备 (2)配置依