• uniapp 地图跳转到第三方导航软件 直接打包成apk


    // 判断是否存在导航软件
          judgeHasExistNavignation() {
            let navAppParam = [{
                pname: 'com.baidu.BaiduMap',
                action: 'baidumap://'
              }, // 百度
              {
                pname: 'com.autonavi.minimap',
                action: 'iosamap://'
              }, // 高德
              {
                pname: 'com.tencent.map',
                action: 'tencentmap://'
              }, // 腾讯
            ];
            return navAppParam.some(param => {
              return plus.runtime.isApplicationExist(param);
            })
          },
          // 获取用户当前定位
          getPosition() {
            let that = this;
            return new Promise(resolve => {
              uni.getLocation({
                type: 'gcj02',
                geocode: true, //设置该参数为true可直接获取经纬度及城市信息
                success: function(res) {
                  let {
                    latitude,
                    longitude
                  } = res
                  that.curSysPosition.latitude = latitude;
                  that.curSysPosition.longitude = longitude;
                  resolve();
                }
              });
            })
          },
          //  打开第三方地图  info对象是目的地的经纬度数据
          // this.info:{
          //   x:
          //   y:
          // }
          async handleOpenNavigation() {
            const lat = this.info.y; //纬度
            const lng = this.info.x; //经度
            const address = '目的地';
            if (!this.judgeHasExistNavignation()) {
              return this.$showToast("该设备上不存在第三方导航APP");
            }
            await this.getPosition();
            let {
              latitude,
              longitude
            } = this.curSysPosition;
            let tLngLat = new plus.maps.Point(lng, lat); // 目的地
            let oLngLat = new plus.maps.Point(longitude, latitude); // 起始地
            plus.maps.openSysMap(tLngLat, address, oLngLat);
          },
          // 地图导航
          toNearbyStore() {
            var url = '';
            const address = '去到这里';
            //地址
            const latitude = this.info.y; //纬度
            const longitude = this.info.x; //精度
            url = 'geo:' + latitude + ',' + longitude + '?q=' + encodeURIComponent(address);
            if (uni.getSystemInfoSync().platform == 'android') {
              plus.runtime.openURL(url);
            } else {
              plus.nativeUI.actionSheet({
                title: "选择地图应用",
                cancel: "取消",
                buttons: [{
                  title: "Apple地图"
                }, {
                  title: "百度地图"
                }, {
                  title: "高德地图"
                }, {
                  title: "google地图"
                }]
              }, function(e) {
                console.log("e.index: " + e.index);
                switch (e.index) {
                  case 1:
                    url =
                      `http://maps.apple.com/?q=${encodeURIComponent(address)}&ll=${latitude},${longitude}&spn=0.008766,0.019441`
                    break;
                  case 2:
                    url = `baidumap://map/marker?location=${latitude},${longitude}&title=DCloud&src=Hello%20uni-app`;
                    break;
                  case 3:
                    url =
                      `iosamap://viewMap?sourceApplication=Hello%20uni-app&poiname=DCloud&lat=${latitude}&lon=${longitude}&dev=0`;
                    break;
                  case 4:
                    url = `comgooglemaps://?q=${encodeURIComponent(address)}¢er=${latitude},${longitude}`;
                    break;
                    plus.runtime.openURL(url, function(e) {
                      plus.nativeUI.alert("未安装此地图");
                    });
                }
              })
            }
          },
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
  • 相关阅读:
    我这两年的CSDN博客创作经历
    MySQL基础篇之MySQL概述
    [信息系统项目管理师-2023备考]信息化与信息系统(一)
    自动化测试的神器:selenium,我真的吹爆
    9/21 携程面试_1面G
    快速排序详解
    JavaScript箭头函数
    JavaScript基础
    支付宝小程序介入人脸识别(金融级--前端部分)
    NFNet:NF-ResNet的延伸,不用BN的4096超大batch size训练 | 21年论文
  • 原文地址:https://blog.csdn.net/Koreyoshi123654/article/details/132708795