ci: Gitea Actions CI/CD 파이프라인 + 기능 업데이트 #2

병합
htlee develop 에서 main 로 59 commits 를 머지했습니다 2026-02-16 07:35:55 +09:00
Showing only changes of commit d01240a737 - Show all commits

파일 보기

@ -289,7 +289,9 @@ function extractProjectionType(map: maplibregl.Map): MapProjectionId | undefined
const DEG2RAD = Math.PI / 180;
const RAD2DEG = 180 / Math.PI;
const GLOBE_ICON_HEADING_OFFSET_DEG = -90;
// ship.svg's native "up" direction is north (0deg),
// so map icon rotation can use COG directly.
const GLOBE_ICON_HEADING_OFFSET_DEG = 0;
const MAP_SELECTED_SHIP_RGB: [number, number, number] = [34, 211, 238];
const MAP_HIGHLIGHT_SHIP_RGB: [number, number, number] = [245, 158, 11];
const MAP_DEFAULT_SHIP_RGB: [number, number, number] = [100, 116, 139];
@ -5002,7 +5004,7 @@ export function Map3D({
getIcon: () => "ship",
getPosition: (d) => [d.lon, d.lat] as [number, number],
getAngle: (d) =>
getDisplayHeading({
-getDisplayHeading({
cog: d.cog,
heading: d.heading,
}),
@ -5030,7 +5032,7 @@ export function Map3D({
getIcon: () => "ship",
getPosition: (d) => [d.lon, d.lat] as [number, number],
getAngle: (d) =>
getDisplayHeading({
-getDisplayHeading({
cog: d.cog,
heading: d.heading,
}),
@ -5085,7 +5087,7 @@ export function Map3D({
getIcon: () => "ship",
getPosition: (d) => [d.lon, d.lat] as [number, number],
getAngle: (d) =>
getDisplayHeading({
-getDisplayHeading({
cog: d.cog,
heading: d.heading,
}),
@ -5230,7 +5232,7 @@ export function Map3D({
getIcon: () => "ship",
getPosition: (d) => [d.lon, d.lat] as [number, number],
getAngle: (d) =>
getDisplayHeading({
-getDisplayHeading({
cog: d.cog,
heading: d.heading,
}),