zoukankan      html  css  js  c++  java
  • 获取经纬度之间两点间真实距离(适用于GoogleMap,BaiduMap,Amap等)

    如何获取经纬度之间两点间真实距离(适用于GoogleMap,BaiduMap,Amap等)

    看标题就会明白,两个经纬度之间真实距离这个一般的地图API有自带方法,直接调用便可得到结果,一般结果都是以米为单位。最近在做Android版上的GoogleMap,找了半天API发现没有此类方法,看来只能自己实现了,接下来我就把如何计算两点之间(经纬度)的真实距离的算法写下来,原则上在各种地图版本上都通用,方便大家使用。

    Google Map API:https://developers.google.com/maps/documentation/android/

    【本文适用于android,iOS等各种平台下的地图经纬度测距】

    自己实现距离算法:

    /** 
         * 计算两点之间距离 
         * @param start 
         * @param end 
         * @return*/  
        public double getDistance(LatLng start,LatLng end){  
            double lat1 = (Math.PI/180)*start.latitude;  
            double lat2 = (Math.PI/180)*end.latitude;  
              
            double lon1 = (Math.PI/180)*start.longitude;  
            double lon2 = (Math.PI/180)*end.longitude;  
              
    //      double Lat1r = (Math.PI/180)*(gp1.getLatitudeE6()/1E6);  
    //      double Lat2r = (Math.PI/180)*(gp2.getLatitudeE6()/1E6);  
    //      double Lon1r = (Math.PI/180)*(gp1.getLongitudeE6()/1E6);  
    //      double Lon2r = (Math.PI/180)*(gp2.getLongitudeE6()/1E6);  
              
            //地球半径  
            double R = 6371;  
              
            //两点间距离 km,如果想要米的话,结果*1000就可以了  
            double d =  Math.acos(Math.sin(lat1)*Math.sin(lat2)+Math.cos(lat1)*Math.cos(lat2)*Math.cos(lon2-lon1))*R;  
              
            return d*1000;  
        }  

    举例:(我使用的百度地图的经纬度数据)

     
    LatLng start = new LatLng(39.95676, 116.401394);  
    LatLng end = new LatLng(36.63014,114.499574);  
    getDistance(start, end);  

    log日志结果为:402.21321(km)

    害怕不准确的话,可以打开百度地图首页,使用测距工具:

    看图应该知道,应该没什么问题吧。

    公式推导过程见:https://blog.csdn.net/xiejm2333/article/details/73297004

  • 相关阅读:
    windows中80端口被System占用,PID=4的问题
    SpringBoot中动态加载(热部署)
    eclipse中Cannot change version of project facet Dynamic Web Module to 3.0的问题解决
    Eclipse启动tomcat后404错误
    Eclipse在当前行之上插入一行
    Java中==规则
    简明log4j配置教程
    CentOS7 配置静态IP
    CentOS7 mini安装后没有ifconfig命令的解决办法
    shell编程学习笔记之sed编辑器
  • 原文地址:https://www.cnblogs.com/zhaoyanhaoBlog/p/10121499.html
Copyright © 2011-2022 走看看