当前位置:   article > 正文

uniapp写小程序实现地址导航弹出地图选择_uniapp小程序地图导航

uniapp小程序地图导航

 我把核心代码贴出来大家一看就知道

但是要注意的是这个必须在腾讯地图的开放平台中申请自己key然后添加到自己的服务器中,这个我在上一边uniapp实现定位中详细写过,这里我就先不多做赘述了,大家可以去看看。这个地图我就先以腾讯地图为例,高德地图都可以。uniapp实现获取用户位置信息(经纬度),通过高德地图和腾讯地图解析_uniapp获取当前位置经纬度_子伟-H5的博客-CSDN博客

  1. <view @tap="navigateToMapMer">
  2. <img src="../../../static/images/icon/dizhi.png" alt="" style="width: 20px; height: 20px" />
  3. </view>

 

  1. navigateToMapMer() {
  2. const address = this.merInfo.address;
  3. if (address) {
  4. uni.request({
  5. url: "https://apis.map.qq.com/ws/geocoder/v1/",
  6. data: {
  7. address: address,
  8. key: "HMUBZ-PQLEG-6I3QM-Q67MV-7FXK3-FTF6H",
  9. },
  10. success: function (res) {
  11. if (res.data.status === 347) {
  12. uni.showToast({
  13. icon: "error",
  14. title: "地址查询无结果",
  15. });
  16. }
  17. const location = res.data.result.location;
  18. const latitude = location.lat;
  19. const longitude = location.lng;
  20. console.log(location, "纬度:" + latitude + ",经度:" + longitude);
  21. uni.openLocation({
  22. name: address,
  23. address: address,
  24. latitude: latitude,
  25. longitude: longitude,
  26. success: () => {
  27. console.log("打开地图成功");
  28. },
  29. fail: (err) => {
  30. console.error("打开地图失败", err);
  31. },
  32. });
  33. },
  34. fail: function (err) {
  35. console.error("获取地址经纬度失败", err);
  36. },
  37. });
  38. }
  39. },

 上述代码是在uniapp中的源码,可以直接使用,另外你自己换成自己需要的地址就行了,另外如果有疑问可以直接@我联系我如果对你有用麻烦您点个关注谢谢,非常感谢!

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号