一、效果图
二、操作步骤
1、申请腾讯地图key——地址
2、小程序后台添加腾讯插件——开发文档
3、小程序代码app.json设置
let plugin = requirePlugin('routePlan');
let key = ''; //使用在腾讯位置服务申请的key
let referer = ''; //调用插件的app的名称
let endPoint = JSON.stringify({ //终点
'name': '吉野家(北京西站北口店)',
'latitude': 39.89631551,
'longitude': 116.323459711
});
wx.navigateTo({
url: 'plugin://routePlan/index?key=' + key + '&referer=' + referer + '&endPoint=' + endPoint
});
或者也可以使用小程序内置地图导航
使用小程序内置地图wx.getLocation和wx.openLocation
官网链接
//wxml
<button type="default" bindtap="openMap">打开地图</button>
//js
Page({
data: {
},
openMap: function () {
wx.getLocation({
type: 'gcj02', // 默认为 wgs84 返回 gps 坐标,gcj02 返回可用于 wx.openLocation 的坐标
success: function (res) {
// success
console.log(res.latitude);
console.log(res.longitude);
wx.openLocation({
latitude: res.latitude, // 纬度,范围为-90~90,负数表示南纬
longitude: res.longitude, // 经度,范围为-180~180,负数表示西经
scale: 28, // 缩放比例
name:"要找的地方名字(某某饭店)",
address:"地址:要去的地点详细描述"
})
}
})
}
})
总结
到此这篇关于微信小程序实现导航功能的文章就介绍到这了,更多相关微信小程序导航功能内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!