详解js根据百度地图提供经纬度计算两点距离
程序员文章站
2023-12-03 13:31:52
正常在使用百度地图时,我们可以通过bmap的实例对象提供的方法计算距离:
var map = new bmap.map('map_canvas');
map.g...
正常在使用百度地图时,我们可以通过bmap的实例对象提供的方法计算距离:
var map = new bmap.map('map_canvas'); map.getdistance(point1 ,point2); //point1、point2 是point对象
如果在不使用百度地图,但是已知百度地图的经纬度情况下也是可以计算出与上面相同的值的
三方库 此库提供计算两点距离的方法
引用此库使用 返回(米)
bmaplib.geoutils.getdistance(point1 ,point2)
当然如果只想计算距离也可以直接用下面的代码:
注:bmap需要导入,使用如下:
bmaplib.geoutils.getdistance(lng1,lat1,lng2,lat2)
import bmap from 'bmap' var bmaplib = window.bmaplib = bmaplib || {}; (function() { /** * 地球半径 */ var earthradius = 6370996.81; /** * @exports geoutils as bmaplib.geoutils */ var geoutils = /** * geoutils类,静态类,勿需实例化即可使用 * @class geoutils类的<b>入口</b>。 * 该类提供的都是静态方法,勿需实例化即可使用。 */ bmaplib.geoutils = function(){ }; /** * 将度转化为弧度 * @param {degree} number 度 * @returns {number} 弧度 */ geoutils.degreetorad = function(degree){ return math.pi * degree/180; } /** * 将v值限定在a,b之间,纬度使用 */ function _getrange(v, a, b){ if(a != null){ v = math.max(v, a); } if(b != null){ v = math.min(v, b); } return v; } /** * 将v值限定在a,b之间,经度使用 */ function _getloop(v, a, b){ while( v > b){ v -= b - a } while(v < a){ v += b - a } return v; } /** * 计算两点之间的距离,两点坐标必须为经纬度 * @param {lng1} number 点对象 * @param {lat1} number 点对象 * @param {lng2} number 点对象 * @param {lat2} number 点对象 * @returns {number} 两点之间距离,单位为米 */ geoutils.getdistance = function(lng1, lat1, lng2 ,lat2){ let point1 = new bmap.point(parsefloat(lng1) ,parsefloat(lat1)); let point2 =new bmap.point(parsefloat(lng2) ,parsefloat(lat2)); //判断类型 if(!(point1 instanceof bmap.point) || !(point2 instanceof bmap.point)){ return 0; } point1.lng = _getloop(point1.lng, -180, 180); point1.lat = _getrange(point1.lat, -74, 74); point2.lng = _getloop(point2.lng, -180, 180); point2.lat = _getrange(point2.lat, -74, 74); let x1, x2, y1, y2; x1 = geoutils.degreetorad(point1.lng); y1 = geoutils.degreetorad(point1.lat); x2 = geoutils.degreetorad(point2.lng); y2 = geoutils.degreetorad(point2.lat); return earthradius * math.acos((math.sin(y1) * math.sin(y2) + math.cos(y1) * math.cos(y2) * math.cos(x2 - x1))); } })();
以上所述是小编给大家介绍的js根据百度地图提供经纬度计算两点距离详解整合,希望对大家有所帮助