import React from 'react'; import compassDialUrl from '../assets/compass_dial.svg'; /** * CompassDial - 使用原生矢量资源渲染指南针圆盘。 * * compass_dial.svg 由 VectorDrawable 转为 SVG,包含 360° 刻度线、度数标签、 * 方向文字(N/E/S/W)、红色北指针三角和中心十字。 * * 整个 SVG 根据 headingDeg 旋转,固定三角指示器在圆盘外部不动。 */ export function CompassDial(props: { size?: number; headingDeg?: number; directionText?: string; }) { const { size = 290, headingDeg = 69, directionText = '东' } = props; return (
{/* Fixed pointer (small triangle at top, does NOT rotate) */}
{/* Native compass dial SVG - rotates based on heading */} {/* Accessibility label */}
{directionText}{headingDeg}°
); }