邹能昇 2 tháng trước cách đây
mục cha
commit
449a590242

+ 16 - 3
app.json

@@ -2,6 +2,11 @@
     "pages": [
         "index"
     ],
+    "requiredPrivateInfos": [
+        "onLocationChange",
+        "startLocationUpdateBackground",
+        "getLocation"
+    ],
     "subpackages": [
         {
             "root": "nova-werun",
@@ -43,10 +48,18 @@
         "enablePullDownRefresh": false
     },
     "permission": {
-        "scope.userLocation": {
-            "desc": "你的位置信息将用于小程序位置接口的效果展示"
+        "scope": {
+          "werun": {
+            "desc": "获取运动数据"
+          },
+          "userLocationBackground": {
+            "desc": "获取后台定位权限"
+          },
+          "userLocation": {
+            "desc": "获取用户位置"
+          }
         }
-    },
+      },
     "usingComponents": {
         "nav": "plugin://fm-plugin/fm-nav",
         "get-phone-number-btn": "components/getPhone/index",

+ 0 - 23
nova-werun/pages/home/sport/sport-home/index.js

@@ -186,29 +186,6 @@ Page({
         }
 
     },
-    haversineDistance(location1, location2) {
-        let lat1 = location1.latitude
-        let lon1 = location1.longitude
-        let lat2 = location2.latitude
-        let lon2 = location2.longitude
-    
-         function toRad(degree) {
-             return degree * Math.PI / 180;
-         }
-         const R = 6371e3; // 地球半径,单位为米
-         const φ1 = toRad(lat1);
-         const φ2 = toRad(lat2);
-         const Δφ = toRad(lat2 - lat1);
-         const Δλ = toRad(lon2 - lon1);
-     
-         const a = Math.sin(Δφ / 2) * Math.sin(Δφ / 2) +
-                   Math.cos(φ1) * Math.cos(φ2) *
-                   Math.sin(Δλ / 2) * Math.sin(Δλ / 2);
-         const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
-     
-         const distance = R * c; // 距离,单位为米
-         return distance;
-     },
     //切换
     switchTab (e) {
         const index = e.currentTarget.dataset.index;

+ 151 - 20
nova-werun/pages/home/sport/sport-start/index.js

@@ -32,13 +32,16 @@ Page({
         show: false,
 
         //
-        timer: null,
+        timer2: null,
         totalSeconds: 0, // 用于存储总秒数
         formattedTime: '00:00:00', // 用于存储格式化后的时间
         isRunning: false, // 计时器是否在运行
         steps: 0, //运动步数
         startsteps: 0,
         defferentstep: 0,
+        distance: 0,
+        calorie: 0,
+        pace: 0,
     },
 
     /**
@@ -67,10 +70,12 @@ Page({
         })
         // 获取初始步数
         // 获取初始步数
-       this. getWeRunData2()
-       console.log(this.data.startsteps);
+        this.getWeRunData2()
+        console.log(this.data.startsteps);
         // 地图
         await this.Getlocation();
+        //开启后台定位
+        this.startbackgroumd()
     },
 
     /**
@@ -84,27 +89,25 @@ Page({
      * 生命周期函数--监听页面显示
      */
     onShow: function () {
-        this.setData({
-            totalSeconds: 0, // 重置总秒数
-            formattedTime: '00:00:00', // 重置格式化后的时间
-            isRunning: false // 初始化为未运行状态
-        });
-        this.startTimer()
+        if (!this.data.isRunning) {
+            this.startTimer();
+        }
     },
 
     /**
      * 生命周期函数--监听页面隐藏
      */
     onHide: function () {
-        // 页面隐藏时清除计时器
-        this.stopTimer();
+        if (this.data.isRunning) {
+            this.stopTimer();
+        }
     },
 
     /**
      * 生命周期函数--监听页面卸载
      */
     onUnload: function () {
-
+        this.stopTimer();
     },
 
     /**
@@ -131,7 +134,7 @@ Page({
     Getlocation() {
         // 获取当前位置信息
         wx.getLocation({
-            type: 'wgs84',
+            type: 'gcj02',
             success: (res) => {
                 const {
                     latitude,
@@ -146,7 +149,6 @@ Page({
                         'Content-Type': 'application/json'
                     },
                     success: (ops) => { // 使用箭头函数
-                        console.log(ops);
                         const address = ops.data.result.formatted_address;
                         this.setData({
                             address: address,
@@ -169,7 +171,6 @@ Page({
                                 // }
                             }]
                         });
-                        console.log(this.data.address);
                     },
                     fail: function (resq) {
                         wx.showModal({
@@ -292,16 +293,24 @@ Page({
         if (this.data.isRunning) return; // 如果已经在运行,则不再启动
 
         const that = this;
-        this.data.timer = setInterval(function () {
+        this.data.timer2 = setInterval(function () {
             that.data.totalSeconds += 1; // 增加总秒数
             that.setData({
                 formattedTime: that.formatTime(that.data.totalSeconds) // 更新格式化后的时间
             });
-            // that.getWeRunData(); 
-            // 每5秒调用一次getWeRunData
-            if (that.data.totalSeconds % 1 === 0) {
+
+            // 每30秒调用一次getWeRunData
+            if (that.data.totalSeconds % 30 === 0) {
                 that.getWeRunData(); // 调用获取微信步数的函数
             }
+
+            // 每4秒调用一次onLocationChange
+            if (that.data.totalSeconds % 4 === 0) {
+                that.onLocationChange((res) => {
+                    // 这里可以处理位置变化的逻辑
+                    console.log('位置已更新:', res);
+                });
+            }
         }, 1000);
 
         this.setData({
@@ -310,10 +319,14 @@ Page({
     },
     //暂停
     stopTimer: function () {
-        clearInterval(this.data.timer);
+        clearInterval(this.data.timer2);
         this.setData({
             isRunning: false // 设置为未运行状态
         });
+        const pace = (this.data.distance / (this.data.totalSeconds / 3600)).toFixed(2); // 配速(km/h)
+        this.setData({
+            pace: pace
+        });
     },
     formatTime: function (seconds) {
         const hours = Math.floor(seconds / 3600);
@@ -458,5 +471,123 @@ Page({
             console.error("保存数据时出现错误:", error);
         }
     },
+    // 开启后台定位
+    startbackgroumd() {
+        wx.startLocationUpdateBackground({
+            success: (res) => {
+                // 开始监听GPS数据
+                this.onLocationChange((res) => {
+                    // 在这里处理位置变化的逻辑
+                    console.log('位置已更新:', res);
+                });
+            },
+            fail: (res) => {
+                // 授权失败后引导用户打开定位信息
+                // 可以添加提示或引导用户操作的代码
+            }
+        });
+    },
+    // 监听位置变化
+    onLocationChange(callback) {
+        console.log('运行了');
+        // 监听位置变化
+        this.Getlocation2()
+        // wx.onLocationChange((res) => {
+        //     console.log('res', res);
+        //     // 计算距离
+        //     let distance = this.haversineDistance(this.data.longitude, this.data.latitude, res.longitude, res.latitude);
+        //     this.setData({
+        //         distance: this.data.distance + distance,
+        //         calorie: this.getCalorie(60, this.data.distance), // 假设体重为60kg
+        //         latitude: res.latitude,
+        //         longitude: res.longitude
+        //     });
+
+        //     // 打印更新后的经纬度(可选)
+        //     console.log('更新后的经纬度:', this.data.latitude, this.data.longitude);
+
+        //     // 调用回调函数(如果有提供的话)
+        //     if (callback) {
+        //         callback(res);
+        //     }
+        // });
+
+    },
+    //位置变化
+    Getlocation2() {
+        // 获取当前位置信息
+        wx.getLocation({
+            type: 'gcj02',
+            success: (res) => {
+                const {
+                    latitude,
+                    longitude
+                } = res;
+                if (this.data.longitude == res.longitude && this.data.latitude == res.latitude) {
+                    console.log('位置没变');
+                } else {
+                    // 计算距离
+                    let distance = this.haversineDistance(this.data.longitude, this.data.latitude, res.longitude, res.latitude);
+
+                    // 更新总距离
+                    const totalDistance = parseFloat((Number(this.data.distance) + Number(distance)).toFixed(3));
+
+                    // 计算卡路里
+                    const calorie = this.getCalorie(60, totalDistance); // 假设体重为60kg
+                    console.log('总距离',totalDistance,'段距离',distance,'总卡路里',calorie);
+                    // 更新状态
+                    this.setData({
+                        distance: totalDistance,
+                        calorie: calorie,
+                        latitude: res.latitude,
+                        longitude: res.longitude
+                    });
+                    console.log('更新经纬度:', latitude, longitude); // 添加日志
+                }
+
+            },
+            fail: (err) => {
+                console.error(err);
+                wx.showToast({
+                    title: '获取位置失败',
+                    icon: 'none'
+                });
+            }
+        });
+    },
+    //计算两点距离
+    haversineDistance(longitude1, latitude1, longitude2, latitude2) {
+        let lat1 = latitude1
+        let lon1 = longitude1
+        let lat2 = latitude2
+        let lon2 = longitude2
+
+        function toRad(degree) {
+            return degree * Math.PI / 180;
+        }
+        const R = 6371e3; // 地球半径,单位为米
+        const φ1 = toRad(lat1);
+        const φ2 = toRad(lat2);
+        const Δφ = toRad(lat2 - lat1);
+        const Δλ = toRad(lon2 - lon1);
+
+        const a = Math.sin(Δφ / 2) * Math.sin(Δφ / 2) +
+            Math.cos(φ1) * Math.cos(φ2) *
+            Math.sin(Δλ / 2) * Math.sin(Δλ / 2);
+        const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a));
+
+        const distance = (R * c) / 1000; // 距离,单位为公里
+        console.log('计算出距离', distance);
+        return parseFloat(distance.toFixed(3));
+    },
+    //计算卡路里
+    getCalorie(weight, distance) {
+        weight = weight || 60 // 国人平均体重 60kg
+        const Calorie = weight * distance * 0.75
+        console.log('卡路里为', Calorie);
+        return parseFloat(Calorie.toFixed(2)); // 保留两位小数并转换为数字
+
+    }
+
 
 })

+ 5 - 5
nova-werun/pages/home/sport/sport-start/index.wxml

@@ -16,23 +16,23 @@
     </view>
     <view class="numberbox">
         <view class="distance">
-            <!-- <view class="dis-num">0.00</view>
-            <view class="dis-text">公里</view> -->
+            <view class="dis-num">{{distance}}</view>
+            <view class="dis-text">公里</view>
 
             <view class="dis-num">{{defferentstep}}</view>
             <view class="dis-text">步</view>
         </view>
         <view class="number">
             <view class="num">
-                <view class="num-num">_'_ _"</view>
-                <view class="num-text">配速(min/km)</view>
+                <view class="num-num">{{pace}}</view>
+                <view class="num-text">配速(km/h)</view>
             </view>
             <view class="num">
                 <view class="num-num">{{formattedTime}}</view>
                 <view class="num-text">时间</view>
             </view>
             <view class="num">
-                <view class="num-num">0</view>
+                <view class="num-num">{{calorie}}</view>
                 <view class="num-text">千卡</view>
             </view>
         </view>