合作联系微信: w6668263      合作联系电话:177-9238-7426     

在 JavaScript 中,可以使用以下方法将经纬度的小数形式转换为度分秒的形式。

在 JavaScript 中,可以使用以下方法将经纬度的小数形式转换为度分秒的形式。
function convertDecimalToDMS(decimal) {
  const degrees = Math.floor(decimal);
  const minutesDecimal = (decimal - degrees) * 60;
  const minutes = Math.floor(minutesDecimal);
  const seconds = Math.round((minutesDecimal - minutes) * 60);
  return `${degrees}°${minutes}'${seconds}"`;
}

// 示例用法
const latitudeDecimal = 37.7749;
const longitudeDecimal = -122.4194;

const latitudeDMS = convertDecimalToDMS(latitudeDecimal);
const longitudeDMS = convertDecimalToDMS(longitudeDecimal);

console.log(`Latitude: ${latitudeDMS}`);
console.log(`Longitude: ${longitudeDMS}`);

 

posted on 2024-09-06 16:32  龙行龘龘9527  阅读(16)  评论(0编辑  收藏  举报

导航