|
@@ -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)); // 保留两位小数并转换为数字
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
})
|