当前位置:首页 > 技术分享

地图经纬度转换工具(天地图,高德地图,百度地图,腾讯地图)

admin4年前 (2023-02-01)技术分享5793

uniapp 中不同地图坐标系经纬度转换(天地图,高德地图,百度地图,腾讯地图)

WGS-84:是国际标准,GPS坐标(Google Earth使用、或者GPS模块、天地图) 

 GCJ-02:中国坐标偏移标准,Google Map、高德、腾讯使用 

 BD-09:百度坐标偏移标准,Baidu Map使用 

 使用演示:https://tool.bitefu.net/geo/maptool.html


// 坐标系转换工具类
// WGS-84:是国际标准,GPS坐标(Google Earth使用、或者GPS模块、天地图)
// GCJ-02:中国坐标偏移标准,Google Map、高德、腾讯使用
// BD-09:百度坐标偏移标准,Baidu Map使用
function MapTool() {  
	this.x_PI = 3.14159265358979324 * 3000.0 / 180.0;  
	this.PI = 3.1415926535897932384626;  
	this.ee = 0.00669342162296594323;  
	this.a = 6378245.0;  
}  

// GCJ-02 转 WGS-84 高德、腾讯转天地图GPS
MapTool.prototype.gcj02towgs84 = function(lng, lat) {  
	if (this.out_of_china(lng, lat)) {
		return [lng, lat];  
	} else {
		let dlat = this.transformlat(lng - 105.0, lat - 35.0);  
		let dlng = this.transformlng(lng - 105.0, lat - 35.0);  
		let radlat = lat / 180.0 * this.PI;  
		let magic = Math.sin(radlat);  
		magic = 1 - this.ee * magic * magic;  
		let sqrtmagic = Math.sqrt(magic);  
		dlat = (dlat * 180.0) / ((this.a * (1 - this.ee)) / (magic * sqrtmagic) * this.PI);  
		dlng = (dlng * 180.0) / (this.a / sqrtmagic * Math.cos(radlat) * this.PI);  
		let mglat = lat + dlat;
		let mglng = lng + dlng;  
		return [lng * 2 - mglng, lat * 2 - mglat];  
	}  
};  

// GCJ-02 转 BD-09 高德、腾讯转百度
MapTool.prototype.gcj02tobd09 = function(lng, lat) {  
	let z = Math.sqrt(lng * lng + lat * lat) + 0.00002 * Math.sin(lat * this.x_PI);  
	let theta = Math.atan2(lat, lng) + 0.000003 * Math.cos(lng * this.x_PI);  
	let bd_lng = z * Math.cos(theta) + 0.0065;  
	let bd_lat = z * Math.sin(theta) + 0.006;  
	return [bd_lng, bd_lat];  
};  

// WGS-84 转 GCJ-02 天地图GPS转高德、腾讯
MapTool.prototype.wgs84togcj02 = function(lng, lat) {  
	if (this.out_of_china(lng, lat)) {  
		return [lng, lat];  
	} else {  
		let dlat = this.transformlat(lng - 105.0, lat - 35.0);  
		let dlng = this.transformlng(lng - 105.0, lat - 35.0);  
		let radlat = lat / 180.0 * this.PI;  
		let magic = Math.sin(radlat);  
		magic = 1 - this.ee * magic * magic;  
		let sqrtmagic = Math.sqrt(magic);  
		dlat = (dlat * 180.0) / ((this.a * (1 - this.ee)) / (magic * sqrtmagic) * this.PI);  
		dlng = (dlng * 180.0) / (this.a / sqrtmagic * Math.cos(radlat) * this.PI);  
		let mglat = lat + dlat;  
		let mglng = lng + dlng;  
		return [mglng, mglat];  
	}  
};  

// BD-09 转 GCJ-02  百度转高德、腾讯
MapTool.prototype.bd09togcj02 = function(bd_lng, bd_lat) {  
	let x = bd_lng - 0.0065;  
	let y = bd_lat - 0.006;  
	let z = Math.sqrt(x * x + y * y) - 0.00002 * Math.sin(y * this.x_PI);  
	let theta = Math.atan2(y, x) - 0.000003 * Math.cos(x * this.x_PI);  
	let gg_lng = z * Math.cos(theta);  
	let gg_lat = z * Math.sin(theta);  
	return [gg_lng, gg_lat];  
};  

// BD-09 转 WGS-84	百度转天地图GPS
MapTool.prototype.bd09towgs84 = function(lng, lat) {  
	const gcj = this.bd09togcj02(lng, lat);  
	return this.gcj02towgs84(gcj[0], gcj[1]);  
};  

// WGS-84 转 BD-09	天地图GPS转百度
MapTool.prototype.wgs84tobd09 = function(lng, lat) {  
	const gcj = this.wgs84togcj02(lng, lat);  
	return this.gcj02tobd09(gcj[0], gcj[1]);  
};  

// 内部转换方法
MapTool.prototype.transformlat = function(lng, lat) {  
	let ret = -100.0 + 2.0 * lng + 3.0 * lat + 0.2 * lat * lat + 0.1 * lng * lat + 0.2 * Math.sqrt(Math.abs(lng));  
	ret += (20.0 * Math.sin(6.0 * lng * this.PI) + 20.0 * Math.sin(2.0 * lng * this.PI)) * 2.0 / 3.0;  
	ret += (20.0 * Math.sin(lat * this.PI) + 40.0 * Math.sin(lat / 3.0 * this.PI)) * 2.0 / 3.0;  
	ret += (160.0 * Math.sin(lat / 12.0 * this.PI) + 320 * Math.sin(lat * this.PI / 30.0)) * 2.0 / 3.0;  
	return ret;  
};  

MapTool.prototype.transformlng = function(lng, lat) {  
	let ret = 300.0 + lng + 2.0 * lat + 0.1 * lng * lng + 0.1 * lng * lat + 0.1 * Math.sqrt(Math.abs(lng));  
	ret += (20.0 * Math.sin(6.0 * lng * this.PI) + 20.0 * Math.sin(2.0 * lng * this.PI)) * 2.0 / 3.0;  
	ret += (20.0 * Math.sin(lng * this.PI) + 40.0 * Math.sin(lng / 3.0 * this.PI)) * 2.0 / 3.0;  
	ret += (150.0 * Math.sin(lng / 12.0 * this.PI) + 300.0 * Math.sin(lng / 30.0 * this.PI)) * 2.0 / 3.0;  
	return ret;  
};  

// 判断坐标是否在中国境内
MapTool.prototype.out_of_china = function(lng, lat) {  
	return (lng < 72.004 || lng > 137.8347) || (lat < 0.8293 || lat > 55.8271);  
};  

// 初始化转换工具
const mapTool = new MapTool();

// 坐标转换函数
function convertCoordinates(lng,lat,sourceType,targetType) {
	var ret = {status:0,msg:''};
	if (isNaN(lng) || isNaN(lat)) {
		ret.msg = '请输入有效的经纬度数值';
		return ret;
	}
    lng = parseFloat(lng)
    lat = parseFloat(lat)
	let result;
	const originalCoords = [lng, lat];
	
	try {
		if (sourceType === targetType) {
			result = [lng, lat];
		} else if (sourceType === 'gcj02' && targetType === 'wgs84') {
			result = mapTool.gcj02towgs84(lng, lat);
		} else if (sourceType === 'gcj02' && targetType === 'bd09') {
			result = mapTool.gcj02tobd09(lng, lat);
		} else if (sourceType === 'wgs84' && targetType === 'gcj02') {
			result = mapTool.wgs84togcj02(lng, lat);
		} else if (sourceType === 'wgs84' && targetType === 'bd09') {
			result = mapTool.wgs84tobd09(lng, lat);
		} else if (sourceType === 'bd09' && targetType === 'gcj02') {
			result = mapTool.bd09togcj02(lng, lat);
		} else if (sourceType === 'bd09' && targetType === 'wgs84') {
			result = mapTool.bd09towgs84(lng, lat);
		}
        
        ret.status=1;
		ret.lng = result[0].toFixed(6);
		ret.lat = result[1].toFixed(6);
		return ret;
	} catch (e) {
		ret.msg = '转换失败: ' + e.message;
		return ret;
	}
}

php类

<?php
/**
 * @name Coordinate
 * @desc 坐标转换
 */
class Coordinate
{
    const x_PI = 52.35987755982988;
    const PI = 3.1415926535897932384626;
    const a = 6378245.0;
    const ee = 0.00669342162296594323;
 
    /**
     * 百度坐标系(BD-09) 转 火星坐标系(GCJ-02)
     * @param 
     * @return 
     **/
    public static function bd09ToGcj02($bd_lon, $bd_lat)
    {
        $x = $bd_lon - 0.0065;
        $y = $bd_lat - 0.006;
        $z = sqrt($x * $x + $y * $y) - 0.00002 * sin($y * self::x_PI);
        $theta = atan2($y, $x) - 0.000003 * cos($x * self::x_PI);
        $g_lon = $z * cos($theta);
        $g_lat = $z * sin($theta);
        return array('lon' => $g_lon, 'lat' => $g_lat);
    }
 
    /**
     * 火星坐标系(GCJ-02) 转 百度坐标系(BD-09)
     * 即谷歌、高德 转 百度
     * @param 
     * @return 
     **/
    public static function gcj02Tobd09($g_lon, $g_lat)
    {
        $z = sqrt($g_lon * $g_lon + $g_lat * $g_lat) + 0.00002 * sin($g_lat * self::x_PI);
        $theta = atan2($g_lat, $g_lon) + 0.000003 * cos($g_lon * self::x_PI);
        $bd_lon = $z * cos($theta) + 0.0065;
        $bd_lat = $z * sin($theta) + 0.006;
        return array('lon' => $bd_lon, 'lat' => $bd_lat);
    }
 
    /**
     * WGS84 转 GCj02
     * @param 
     * @return 
     **/
    public static function wgs84ToGcj02($w_lon, $w_lat)
    {
        $dlat = self::transFormLat($w_lon - 105.0, $w_lat - 35.0);
        $dlon = self::transFormLon($w_lon - 105.0, $w_lat - 35.0);
        $radlat = $w_lat / 180.0 * self::PI;
        $magic = sin($radlat);
        $magic = 1 - self::ee * $magic * $magic;
        $sqrtmagic = sqrt($magic);
        $dlat = ($dlat * 180.0) / ((self::a * (1 - self::ee)) / ($magic * $sqrtmagic) * self::PI);
        $dlon = ($dlon * 180.0) / (self::a / $sqrtmagic * cos($radlat) * self::PI);
        $g_lat = $w_lat + $dlat;
        $g_lon = $w_lon + $dlon;
        return array('lon' => $g_lon, 'lat' => $g_lat);
    }
 
    /**
     * GCJ02 转换为 WGS84
     * @param 
     * @return 
     **/
    public static function gcj02ToWgs84($g_lon, $g_lat)
    {
        $dlat = self::transFormLat($g_lon - 105.0, $g_lat - 35.0);
        $dlon = self::transFormLon($g_lon - 105.0, $g_lat - 35.0);
        $radlat = $g_lat / 180.0 * self::PI;
        $magic = sin($radlat);
        $magic = 1 - self::ee * $magic * $magic;
        $sqrtmagic = sqrt($magic);
        $dlat = ($dlat * 180.0) / ((self::a * (1 - self::ee)) / ($magic * $sqrtmagic) * self::PI);
        $dlon = ($dlon * 180.0) / (self::a / $sqrtmagic * cos($radlat) * self::PI);
        $w_lat = $g_lat + $dlat;
        $w_lon = $g_lon + $dlon;
        return array('lon' => $g_lon * 2 -$w_lon, 'lat' => $g_lat * 2 -$w_lat);
    }
 
    /**
     * BD09 转换为 WGS84
     * @param 
     * @return 
     **/
    public static function bd09ToWgs84($bd_lon, $bd_lat)
    {
        $gcj02 = self::bd09ToGcj02($bd_lon, $bd_lat);
        $g_lon = $gcj02['lon'];
        $g_lat = $gcj02['lat'];
        $wgs84 = self::gcj02ToWgs84($g_lon, $g_lat);
        return $wgs84;
    }
 
    /**
     * WGS84 转换为 BD09
     * @param 
     * @return 
     **/
    public static function wgs84ToBd09($w_lon,$w_lat){
        $gcj02 = self::wgs84ToGcj02($w_lon,$w_lat);
        $g_lon = $gcj02['lon'];
        $g_lat = $gcj02['lat'];
        $bd09 = self::gcj02Tobd09($g_lon,$g_lat);
        return $bd09;
    } 
 
    /**
     * 转换纬度
     * @param 
     * @return 
     **/
    protected static function transFormLat($lon, $lat)
    {
        $ret = -100.0 + 2.0 * $lon + 3.0 * $lat + 0.2 * $lat * $lat + 0.1 * $lon * $lat + 0.2 * sqrt(abs($lon));
        $ret += (20.0 * sin(6.0 * $lon * self::PI) + 20.0 * sin(2.0 * $lon * self::PI)) * 2.0 / 3.0;
        $ret += (20.0 * sin($lat * self::PI) + 40.0 * sin($lat / 3.0 * self::PI)) * 2.0 / 3.0;
        $ret += (160.0 * sin($lat / 12.0 * self::PI) + 320 * sin($lat * self::PI / 30.0)) * 2.0 / 3.0;
        return $ret;
    }
 
    /**
     * 转换经度
     * @param 
     * @return 
     **/
    protected static function transFormLon($lon, $lat)
    {
        $ret = 300.0 + $lon + 2.0 * $lat + 0.1 * $lon * $lon + 0.1 * $lon * $lat + 0.1 * sqrt(abs($lon));
        $ret += (20.0 * sin(6.0 * $lon * self::PI) + 20.0 * sin(2.0 * $lon * self::PI)) * 2.0 / 3.0;
        $ret += (20.0 * sin($lon * self::PI) + 40.0 * sin($lon / 3.0 * self::PI)) * 2.0 / 3.0;
        $ret += (150.0 * sin($lon / 12.0 * self::PI) + 300.0 * sin($lon / 30.0 * self::PI)) * 2.0 / 3.0;
        return $ret;
    }
}
?>


扫描二维码推送至手机访问。

版权声明:本文由小刚刚技术博客发布,如需转载请注明出处。

本文链接:https://blog.bitefu.net/post/461.html

分享给朋友:

“地图经纬度转换工具(天地图,高德地图,百度地图,腾讯地图)” 的相关文章

百度云网盘高速下载方法[测试可用]

百度云网盘高速下载方法[测试可用]

大前提这是一个油猴脚本,安装脚本之前,必须先安装油猴浏览器扩展(如已安装则跳过):【第一步】下载油猴 --> 如有提示安装,则直接安装即可,否则继续执行第二步【第二步】安装油猴 --> 参考其中章节:&nbs…

抢先体验太阳谷!20H1、20H2、21H1替换“Dev版新图标”

尽量不要替换shell32.dll.mun和zipfldr.dll.mun,这两老哥可能会带来无法预测的风险!不解除被替换文件的硬链接,已确定会导致无法安装质量更新!(详见H大测评)单替换imageres.dll.mun新图标覆盖率基本可达…

apicloud影视APP源码 无需后台

apicloud影视APP源码 无需后台

介绍集合vip影视接口到一个android app中 方便观看各平台影视资源及直播开源地址:https://gitee.com/web/vip_yingshi软件架构使用apicloud搭建影视APP源码,无后台,调用接口同步api解析网址…

记一次阿里云服务器cc攻击防护 windows 2012 iis8

记一次阿里云服务器cc攻击防护 windows 2012 iis8

上次连续一周左右阿里云服务器都在遭受cc攻击.导致访问量特别大,节假日接口调用特别缓慢或者根本访问不了的情况.本身服务器安装了 网站安全狗(IIS版) .并开始了防cc攻击.但是呢,平时还行,这次压力山大.于是一气之下用pytho…

Lodop、C-Lodop 95版本chrome跨域请求问题 has been blocked by CORS policy: Response 解决

1、打开chrome://flags/#site-isolation-trial-opt-out2、搜索Block insecure private network requests3、设置disabled4、重启chrome…

android studio 配置HTTP proxy 在线更新镜像服务器 可用阿里云镜像

android studio 配置HTTP proxy 在线更新镜像服务器 可用阿里云镜像

Android SDK在线更新镜像服务器南阳理工学院镜像服务器地址:mirror.nyist.edu.cn 端口:80中国科学院开源协会镜像站地址:IPV4/IPV6: mirrors.opencas.cn 端口:80IPV4/IPV6:…

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。