This commit is contained in:
liqi 2025-05-19 15:07:43 +08:00
parent 90b5c83f9f
commit 1ee3fe56e2
5 changed files with 10 additions and 3 deletions

View File

@ -10,6 +10,7 @@ const allPositionPitch = -90; // 全部防区跳转俯仰角
const currTime = 15; // 左侧无人机消失时间 const currTime = 15; // 左侧无人机消失时间
const uavSize = 50; // 无人机大小 const uavSize = 50; // 无人机大小
const uaColor = "#ffffff"; // 无人机颜色
window.mapConfig = { window.mapConfig = {
isCamera: isCamera, isCamera: isCamera,
@ -21,5 +22,6 @@ window.mapConfig = {
allPositionAlt: allPositionAlt, allPositionAlt: allPositionAlt,
allPositionPitch: allPositionPitch, allPositionPitch: allPositionPitch,
currTime: currTime, currTime: currTime,
uavSize: uavSize uavSize: uavSize,
uaColor: uaColor
}; };

View File

@ -88,9 +88,13 @@ body {
height: 35px; height: 35px;
margin-left: 41px; margin-left: 41px;
margin-top: 13px; margin-top: 13px;
img { .header-logo {
width: 290px; width: 290px;
height: 100%; height: 100%;
background: url(../img/logo.png);
background-size: 100% 100%;
background-repeat: no-repeat;
background-position: center;
} }
} }
.header-main { .header-main {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 2.9 MiB

View File

@ -1,7 +1,7 @@
<template> <template>
<div class="header"> <div class="header">
<div class="header-left"> <div class="header-left">
<img src="@/assets/img/logo.png" alt="" /> <div class="header-logo"></div>
</div> </div>
<div class="header-main"> <div class="header-main">
<div class="textTile"> <div class="textTile">

View File

@ -388,6 +388,7 @@ export function mapUavFiex(options) {
pitch: 0, pitch: 0,
// 滚转 // 滚转
roll: 0.0, roll: 0.0,
color: window.mapConfig.uaColor,
show: true show: true
}, },
attr: item attr: item