|
@@ -57,13 +57,13 @@ const ShipNormalStyle = ({course = 0, speed = 0, head = null, color = '#01f200',
|
|
let lineRadius = 0
|
|
let lineRadius = 0
|
|
if (speed > 0) {
|
|
if (speed > 0) {
|
|
if (speed <= 5) {
|
|
if (speed <= 5) {
|
|
- lineRadius = 2
|
|
|
|
|
|
+ lineRadius = 2 + speed * 4
|
|
} else if (speed <= 10) {
|
|
} else if (speed <= 10) {
|
|
- lineRadius = 6
|
|
|
|
|
|
+ lineRadius = 10 + speed * 2
|
|
} else if (speed <= 20) {
|
|
} else if (speed <= 20) {
|
|
- lineRadius = 18
|
|
|
|
|
|
+ lineRadius = 20 + speed * 2
|
|
} else if (speed > 20) {
|
|
} else if (speed > 20) {
|
|
- lineRadius = 30
|
|
|
|
|
|
+ lineRadius = 30 + speed * 2
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// 船速
|
|
// 船速
|