轨迹修改

This commit is contained in:
tx 2024-12-24 09:26:50 +08:00
parent 6609e50763
commit f8675832cc

View File

@ -55,6 +55,14 @@
<text class="label">定位</text>
<text class="value">{{ location }}</text>
</view>
<view class="device-item">
<text class="label">电池</text>
<text class="value">{{ currentBattery }}</text>
</view>
<view class="device-item">
<text class="label">锁状态</text>
<text class="value">{{ currentLockStatus }}</text>
</view>
</view>
<!-- 轨迹回放控制面板 -->
@ -133,6 +141,8 @@ export default {
currentSpeedIndex: 1, //
currentSpeed: '0.00', //
playbackInterval: 1000, //
currentBattery: '未知', //
currentLockStatus: '关锁', //
//
time1: false,
@ -398,7 +408,8 @@ export default {
//
this.currentPointTime = currentPoint.time;
this.location = `${currentPoint.longitude}, ${currentPoint.latitude}`;
this.currentBattery = currentPoint.bta == null ? '未知' : (currentPoint.bta / 10).toFixed(1)+'V'
this.currentLockStatus = currentPoint.lockStatus == '0' ? '关锁' : '开锁'
// 线
this.currentPolyline = [{
points: this.trackPoints.slice(0, index + 1),
@ -465,7 +476,7 @@ export default {
height: 47,
iconPath: iconPath,
callout: {
content: `${currentPoint.remainingPower}% | ${this.currentSpeed}km/h`,
content: ` ${this.currentSpeed}km/h`,
color: calloutColor,
fontSize: 10,
borderRadius: 10,