轨迹修改
This commit is contained in:
parent
6609e50763
commit
f8675832cc
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue
Block a user