|
@@ -89,7 +89,7 @@ Page({
|
|
|
* 生命周期函数--监听页面显示
|
|
|
*/
|
|
|
onShow: function () {
|
|
|
- if (!this.data.isRunning&&!this.data.isstop) {
|
|
|
+ if (!this.data.isRunning && !this.data.isstop) {
|
|
|
this.startTimer();
|
|
|
}
|
|
|
},
|
|
@@ -304,13 +304,10 @@ Page({
|
|
|
that.getWeRunData(); // 调用获取微信步数的函数
|
|
|
}
|
|
|
|
|
|
- // 每4秒调用一次onLocationChange
|
|
|
- if (that.data.totalSeconds % 4 === 0) {
|
|
|
- that.onLocationChange((res) => {
|
|
|
- // 这里可以处理位置变化的逻辑
|
|
|
- console.log('位置已更新:', res);
|
|
|
- });
|
|
|
- }
|
|
|
+ that.onLocationChange((res) => {
|
|
|
+ // 这里可以处理位置变化的逻辑
|
|
|
+ console.log('位置已更新:', res);
|
|
|
+ });
|
|
|
}, 1000);
|
|
|
|
|
|
this.setData({
|
|
@@ -323,6 +320,7 @@ Page({
|
|
|
this.setData({
|
|
|
isRunning: false // 设置为未运行状态
|
|
|
});
|
|
|
+ wx.offLocationChange();
|
|
|
},
|
|
|
formatTime: function (seconds) {
|
|
|
const hours = Math.floor(seconds / 3600);
|
|
@@ -487,26 +485,37 @@ Page({
|
|
|
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);
|
|
|
- // }
|
|
|
- // });
|
|
|
+ // this.Getlocation2()
|
|
|
+ wx.onLocationChange((res) => {
|
|
|
+ // 计算距离
|
|
|
+ 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
|
|
|
+
|
|
|
+ const pace = parseFloat(Number((totalDistance / (this.data.totalSeconds / 3600)).toFixed(2))); // 配速(km/h)
|
|
|
+
|
|
|
+ console.log('总距离', totalDistance, '段距离', distance, '总卡路里', calorie, '配速', pace);
|
|
|
+ // 更新状态
|
|
|
+ this.setData({
|
|
|
+ pace,
|
|
|
+ distance: totalDistance,
|
|
|
+ calorie: calorie,
|
|
|
+ latitude: res.latitude,
|
|
|
+ longitude: res.longitude
|
|
|
+ });
|
|
|
+
|
|
|
+ // 打印更新后的经纬度(可选)
|
|
|
+ console.log('更新后的经纬度:', this.data.latitude, this.data.longitude);
|
|
|
+
|
|
|
+ // 调用回调函数(如果有提供的话)
|
|
|
+ if (callback) {
|
|
|
+ callback(res);
|
|
|
+ }
|
|
|
+ });
|
|
|
|
|
|
},
|
|
|
//位置变化
|
|
@@ -533,7 +542,7 @@ Page({
|
|
|
|
|
|
const pace = parseFloat(Number((totalDistance / (this.data.totalSeconds / 3600)).toFixed(2))); // 配速(km/h)
|
|
|
|
|
|
- console.log('总距离',totalDistance,'段距离',distance,'总卡路里',calorie,'配速',pace);
|
|
|
+ console.log('总距离', totalDistance, '段距离', distance, '总卡路里', calorie, '配速', pace);
|
|
|
// 更新状态
|
|
|
this.setData({
|
|
|
pace,
|