将经纬度转换为公里 [英] Convert Latitude and Longitude into kms

查看:120
本文介绍了将经纬度转换为公里的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在构建应用程序,使用以下代码获取用户的latitudelongitude

I am building application where i am getting the user's latitude and longitude using the below code

<!DOCTYPE html> <html> <body>

<p>Click the button to get your coordinates.</p>

<button onclick="getLocation()">Try It</button>

<p id="demo"></p>

<script> var x = document.getElementById("demo");

function getLocation() {
    if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition(showPosition);
    } else { 
        x.innerHTML = "Geolocation is not supported by this browser.";
    } }

function showPosition(position) {
    x.innerHTML = "Latitude: " + position.coords.latitude + 
    "<br>Longitude: " + position.coords.longitude;   } </script>

</body> </html>

现在,我想将其转换为公里,以便可以与其他经纬度进行比较,并计算它们之间的差异(以公里为单位).

Now i want to convert it to kilometre so that i can compare with other latitude and longitude and calculate the difference between them in kilometre.

推荐答案

此脚本对您有用,但在php中

This Script is usefull for you, but its in php

function distance($lat1, $lon1, $lat2, $lon2, $unit) {

      $theta = $lon1 - $lon2;
      $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) +  cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta));
       $dist = acos($dist);
       $dist = rad2deg($dist);
      $miles = $dist * 60 * 1.1515;
      $unit = strtoupper($unit);

 if ($unit == "K") {
   return ($miles * 1.609344);
     } else if ($unit == "N") {
     return ($miles * 0.8684);
      } else {
      return $miles;
     }
  }

要使用的功能

Function to use

  echo distance(32.9697, -96.80322, 29.46786, -98.53506, "M") . " Miles<br>";
  echo distance(32.9697, -96.80322, 29.46786, -98.53506, "K") . " Kilometers<br>";
  echo distance(32.9697, -96.80322, 29.46786, -98.53506, "N") . " Nautical Miles<br>";

这篇关于将经纬度转换为公里的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆