release: bump version to 0.44.0

This commit is contained in:
linkong
2026-04-29 17:27:44 +08:00
parent 2da25376bd
commit 87594a95ff
54 changed files with 3665 additions and 2154 deletions

View File

@@ -246,12 +246,13 @@ export async function showVesselTrack(marker, earth) {
export function getVesselLegendItems() {
return [
{ label: "货轮", color: VESSEL_CONFIG.colors.cargo },
{ label: "油轮", color: VESSEL_CONFIG.colors.tanker },
{ label: "客船", color: VESSEL_CONFIG.colors.passenger },
{ label: "渔船", color: VESSEL_CONFIG.colors.fishing },
{ label: "军舰", color: VESSEL_CONFIG.colors.military },
{ label: "其他", color: VESSEL_CONFIG.colors.other },
{ label: "货轮", color: VESSEL_CONFIG.colors.cargo, shape: "vessel" },
{ label: "油轮", color: VESSEL_CONFIG.colors.tanker, shape: "vessel" },
{ label: "客船", color: VESSEL_CONFIG.colors.passenger, shape: "vessel" },
{ label: "渔船", color: VESSEL_CONFIG.colors.fishing, shape: "vessel" },
{ label: "军舰", color: VESSEL_CONFIG.colors.military, shape: "vessel" },
{ label: "停泊/低速", color: VESSEL_CONFIG.colors.other, shape: "dot" },
{ label: "其他船只", color: VESSEL_CONFIG.colors.other, shape: "vessel" },
];
}