错误: {{ error }}
成功: {{ success }}
🔍 正在获取位置信息...
📍 经纬度坐标
纬度 (十进制):
{{ location.latitude.toFixed(6) }}°
经度 (十进制):
{{ location.longitude.toFixed(6) }}°
纬度 (角分):
{{ formatToDMS(location.latitude, 'lat') }}
经度 (角分):
{{ formatToDMS(location.longitude, 'lng') }}
📏 附加信息
海拔高度:
{{ location.altitude ? location.altitude.toFixed(2) + ' 米' : '不可用' }}
精度:
{{ location.accuracy ? location.accuracy.toFixed(2) + ' 米' : '不可用' }}
获取时间:
{{ formatTime(location.timestamp) }}