//  桥接后,OC工程也可用
// HTMCoorTransform.swift
// HTMapKit
//
// Created by LongMa on 2021/8/3.
// import Foundation
import CoreLocation @objcMembers
public class HTMCoorTransform: NSObject{ static let shared = HTMCoorTransform.init() //WGS-84:是国际标准,GPS坐标(Google Earth使用、或者GPS模块)
//GCJ-02:中国坐标偏移标准,Google Map、高德、腾讯使用
//BD-09: 百度坐标偏移标准,Baidu Map使用 let a = 6378245.0;
let ee = 0.00669342162296594323;
let pi = 3.1415926535897932384626;
let xPi = Double.pi * 3000.0 / 180.0; //WGS-84 --> GCJ-02
public static func transformFromWGSToGCJ(_ wgsLoc:CLLocationCoordinate2D)->CLLocationCoordinate2D{
return shared.transformFromWGSToGCJ(wgsLoc)
}
func transformFromWGSToGCJ(_ wgsLoc:CLLocationCoordinate2D)->CLLocationCoordinate2D
{
var adjustLoc=CLLocationCoordinate2D();
if( isLocationOutOfChina(location: wgsLoc))
{
adjustLoc = wgsLoc;
}
else
{
var adjustLat = transformLatWithX(wgsLoc.longitude - 105.0 ,wgsLoc.latitude - 35.0);
var adjustLon = transformLonWithX(wgsLoc.longitude - 105.0 ,wgsLoc.latitude - 35.0);
let radLat = wgsLoc.latitude / 180.0 * pi;
var magic = sin(radLat);
magic = 1 - ee * magic * magic;
let sqrtMagic = sqrt(magic);
adjustLat = (adjustLat * 180.0) / ((a * (1 - ee)) / (magic * sqrtMagic) * pi);
adjustLon = (adjustLon * 180.0) / (a / sqrtMagic * cos(radLat) * pi);
adjustLoc.latitude = wgsLoc.latitude + adjustLat;
adjustLoc.longitude = wgsLoc.longitude + adjustLon;
}
return adjustLoc;
} func transformLatWithX(_ x:Double,_ y:Double)->Double
{
var lat = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y ;
lat += 0.2 * sqrt(fabs(x)); lat += (20.0 * sin(6.0 * x * pi)) * 2.0 / 3.0;
lat += (20.0 * sin(2.0 * x * pi)) * 2.0 / 3.0;
lat += (20.0 * sin(y * pi)) * 2.0 / 3.0;
lat += (40.0 * sin(y / 3.0 * pi)) * 2.0 / 3.0;
lat += (160.0 * sin(y / 12.0 * pi)) * 2.0 / 3.0;
lat += (320 * sin(y * pi / 30.0)) * 2.0 / 3.0;
return lat;
} func transformLonWithX(_ x:Double,_ y:Double)->Double
{
var lon = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y ;
lon += 0.1 * sqrt(fabs(x));
lon += (20.0 * sin(6.0 * x * pi)) * 2.0 / 3.0;
lon += (20.0 * sin(2.0 * x * pi)) * 2.0 / 3.0;
lon += (20.0 * sin(x * pi)) * 2.0 / 3.0;
lon += (40.0 * sin(x / 3.0 * pi)) * 2.0 / 3.0;
lon += (150.0 * sin(x / 12.0 * pi)) * 2.0 / 3.0;
lon += (300.0 * sin(x / 30.0 * pi)) * 2.0 / 3.0;
return lon;
} //GCJ-02 --> BD-09
public static func transformFromGCJToBaidu(_ wgsLoc:CLLocationCoordinate2D)->CLLocationCoordinate2D{
return shared.transformFromGCJToBaidu(wgsLoc)
}
func transformFromGCJToBaidu(_ p:CLLocationCoordinate2D) -> CLLocationCoordinate2D
{
let z = sqrt(p.longitude * p.longitude + p.latitude * p.latitude) + 0.00002 * sqrt(p.latitude * pi);
let theta = atan2(p.latitude, p.longitude) + 0.000003 * cos(p.longitude * pi);
var geoPoint=CLLocationCoordinate2D();
geoPoint.latitude = (z * sin(theta) + 0.006);
geoPoint.longitude = (z * cos(theta) + 0.0065);
return geoPoint;
} //BD-09 --> GCJ-02
public static func transformFromBaiduToGCJ(_ wgsLoc:CLLocationCoordinate2D)->CLLocationCoordinate2D{
return shared.transformFromBaiduToGCJ(wgsLoc)
}
func transformFromBaiduToGCJ(_ p:CLLocationCoordinate2D)-> CLLocationCoordinate2D
{
let x = p.longitude - 0.0065, y = p.latitude - 0.006;
let z = sqrt(x * x + y * y) - 0.00002 * sin(y * xPi);
let theta = atan2(y, x) - 0.000003 * cos(x * xPi);
var geoPoint = CLLocationCoordinate2D();
geoPoint.latitude = z * sin(theta);
geoPoint.longitude = z * cos(theta);
return geoPoint;
} //GCJ-02 --> WGS-84
public static func transformFromGCJToWGS(_ wgsLoc:CLLocationCoordinate2D)->CLLocationCoordinate2D{
return shared.transformFromGCJToWGS(wgsLoc)
}
func transformFromGCJToWGS(_ p:CLLocationCoordinate2D) -> CLLocationCoordinate2D
{
let threshold = 0.00001; // The boundary
var minLat = p.latitude - 0.5;
var maxLat = p.latitude + 0.5;
var minLng = p.longitude - 0.5;
var maxLng = p.longitude + 0.5; var delta = 1.0;
let maxIteration = 30;
// Binary search
while(true)
{
let leftBottom = transformFromWGSToGCJ(CLLocationCoordinate2D(latitude: minLat,longitude: minLng));
let rightBottom = transformFromWGSToGCJ(CLLocationCoordinate2D(latitude : minLat,longitude : maxLng));
let leftUp = transformFromWGSToGCJ(CLLocationCoordinate2D(latitude : maxLat,longitude : minLng));
let midPoint = transformFromWGSToGCJ(CLLocationCoordinate2D(latitude : ((minLat + maxLat) / 2),longitude : ((minLng + maxLng) / 2)));
delta = fabs(midPoint.latitude - p.latitude) + fabs(midPoint.longitude - p.longitude); if(maxIteration <= 1 || delta <= threshold)
{
return CLLocationCoordinate2D(latitude: (minLat + maxLat) / 2, longitude: (minLng + maxLng) / 2); } if(isContains(p, p1: leftBottom, p2: midPoint))
{
maxLat = (minLat + maxLat) / 2;
maxLng = (minLng + maxLng) / 2;
}
else if(isContains(p, p1: rightBottom, p2: midPoint))
{
maxLat = (minLat + maxLat) / 2;
minLng = (minLng + maxLng) / 2;
}
else if(isContains(p, p1: leftUp, p2: midPoint))
{
minLat = (minLat + maxLat) / 2;
maxLng = (minLng + maxLng) / 2;
}
else
{
minLat = (minLat + maxLat) / 2;
minLng = (minLng + maxLng) / 2;
}
} } //WGS-84 --> BD-09
public static func transformFromWGSToBaidu(_ wgsLoc:CLLocationCoordinate2D)->CLLocationCoordinate2D{
return shared.transformFromWGSToBaidu(wgsLoc)
}
func transformFromWGSToBaidu(_ p:CLLocationCoordinate2D) -> CLLocationCoordinate2D
{
let gcj = transformFromWGSToGCJ(p);
let bd = transformFromGCJToBaidu(gcj)
return bd;
} //BD-09 --> WGS-84
public static func transformFromBaiduToWGS(_ wgsLoc:CLLocationCoordinate2D)->CLLocationCoordinate2D{
return shared.transformFromBaiduToWGS(wgsLoc)
}
func transformFromBaiduToWGS(_ p:CLLocationCoordinate2D) -> CLLocationCoordinate2D
{
let gcj = transformFromBaiduToGCJ(p)
let wgs = transformFromGCJToWGS(gcj)
return wgs;
} //判断点是否在p1和p2之间
//point: 点
//p1: 左上角
//p2: 右下角
func isContains(_ point:CLLocationCoordinate2D , p1:CLLocationCoordinate2D, p2:CLLocationCoordinate2D)->Bool
{ return (point.latitude >= min(p1.latitude, p2.latitude) && point.latitude <= max(p1.latitude, p2.latitude)) && (point.longitude >= min(p1.longitude,p2.longitude) && point.longitude <= max(p1.longitude, p2.longitude));
} //是否在中国以外
func isLocationOutOfChina(location:CLLocationCoordinate2D) -> Bool
{
if (location.longitude < 72.004 || location.longitude > 137.8347 || location.latitude < 0.8293 || location.latitude > 55.8271){
return true;
}else{
return false;
} } ///获取两点之间的距离
public static func distanceByPoint(lat1:Double,lat2 :Double,lng1 :Double,lng2:Double)->Double{
let dd = Double.pi/180;
let x1=lat1*dd;
let x2=lat2*dd;
let y1=lng1*dd;
let y2=lng2*dd;
let R = 6371004; let temp = 2 - 2 * cos(x1) * cos(x2) * cos(y1-y2) - 2 * sin(x1) * sin(x2); let distance = Double(2) * Double(R) * asin(sqrt(temp)/2); //返回 m
return distance; } ///获取两点之间的距离
public static func distanceByPoint(point1:CLLocationCoordinate2D,point2:CLLocationCoordinate2D)->Double{
return distanceByPoint(lat1: point1.latitude, lat2: point2.latitude, lng1: point1.longitude, lng2: point2.longitude); }
}

iOS实现常用地图坐标系转换(swift5)的更多相关文章

  1. GPS各种地图坐标系转换(转载)

    http://my.oschina.net/fankun2013/blog/338100 地图供应商比较多,产生了许多地图坐标.地图坐标正确转换是个问题.在之前开发地图应用的时候发现从WGS84坐标系 ...

  2. gps各种地图坐标系转换

    原文地址:https://my.oschina.net/fankun2013/blog/338100 地图供应商比较多,产生了许多地图坐标.地图坐标正确转换是个问题.在之前开发地图应用的时候发现从WG ...

  3. unity常用的坐标系转换

    当调用别人的接口时,经常会有获取位置或向量的接口.遇到这些数据时,先要弄清楚现在获取的数据在哪个坐标系下的. 是否需要进行坐标系变换,一般提供的位置和向量都是在世界坐标系的,此时需要注意: ①对方的坐 ...

  4. [转]iOS开发中的火星坐标系及各种坐标系转换算法

     iOS开发中的火星坐标系及各种坐标系转换算法 源:https://my.oschina.net/u/2607703/blog/619183   其原理是这样的:保密局开发了一个系统,能将实际的坐标转 ...

  5. iOS开发中的火星坐标系及各种坐标系转换算法

    原文地址:http://m.oschina.net/blog/619183?ref=myread 其原理是这样的:保密局开发了一个系统,能将实际的坐标转换成虚拟的坐标.所有在中国销售的数字地图必须使用 ...

  6. iOS自带地图纠偏问题

    …………纠偏 篇………….. 1. 涉及接口:<CoreLocation/CoreLocation.h> 2. 核心代码解读: if ([CLLocationManager locatio ...

  7. 高德,百度,Google地图定位偏移以及坐标系转换

    一.在进行地图开发过程中,我们一般能接触到以下三种类型的地图坐标系: 1.WGS-84原始坐标系 一般用国际GPS纪录仪记录下来的经纬度,通过GPS定位拿到的原始经纬度,Google和高德地图定位的的 ...

  8. 百度地图和高德地图坐标系的互相转换 四种Sandcastle方法生成c#.net帮助类帮助文档 文档API生成神器SandCastle使用心得 ASP.NET Core

    百度地图和高德地图坐标系的互相转换   GPS.谷歌.百度.高德坐标相互转换 一.在进行地图开发过程中,我们一般能接触到以下三种类型的地图坐标系: 1.WGS-84原始坐标系,一般用国际GPS纪录仪记 ...

  9. ios开发之坐标系转换

    1:坐标系转换最核心的问题就是:比较两个坐标是否包含,或者是重叠等,最主要的问题是先将两个坐标转换到同一个坐标系下再去比较.第一步先确定矩形框在某个view坐标系下的frame(该矩形框是以该view ...

随机推荐

  1. NUC980 运行 RT-Thread 时使用 GPIO

    如何使用 GPIO? NuMaker-RTU-NUC980 板子引出的 IO 有: 分别有一个 I2C1.GPIO.SPI0.UART4,RT-Thread 中 NuMaker-RTU-NUC980 ...

  2. Redis的主从数据一致性

    我们学习了 AOF 和 RDB,如果 Redis 发生了宕机,它们可以分别通过回放日志和重新读入 RDB 文件的方式恢复数据,从而保证尽量少丢失数据,提升可靠性.不过,即使用了这两种方法,也依然存在服 ...

  3. FastDFS文件系统迁移和数据恢复

    迁移步骤 打包旧服务器文件的所有文件 定位到旧服务器的tracker和Storage目录,将整个文件夹打包 tar -zcf fdfs-storage-data.tar.gz /fastdfs/sto ...

  4. [Django REST framework - 自动生成接口文档、分页]

    [Django REST framework - 自动生成接口文档.分页] 自动生成接口文档 # 后端人员写好接口,编写接口文档,给前端人员看,前端人员依照接口文档开发 # 公司里主流 -后端,使用w ...

  5. 基于Redis的分布式锁设计

    前言 基于Redis的分布式锁实现,原理很简单嘛:检测一下Key是否存在,不存在则Set Key,加锁成功,存在则加锁失败.对吗?这么简单吗? 如果你真这么想,那么你真的需要好好听我讲一下了.接下来, ...

  6. 海量数据Excel报表利器——EasyExcel(一 利用反射机制导出Excel)

    EasyExcel 写入(导出) 互联网的精髓就是共享,可以共享技术.共享经验.共享情感.共享快乐~ 很多年前就有这个想法了,从事IT行业时间也不短了,应该把自己工作和业余所学习的东西记录并分享出来, ...

  7. mysql 的基础操作

    1.建表 create table  表名( 字段一 数据类型 [列属性] , 字段二 数据类型 [列属性], ......... )[表类型][表字符集][注释]; 注意:MySQL命令终止符为分号 ...

  8. android开发相关知识笔记

    1.xpage页面打开: openPage(TestFragment.class) openPage("标识") // 页面打开等待结果返回: openPageForResult( ...

  9. Android控件总结

    最常用的控件:TextView.EditText.Button.ImageView TextView                                                文本 ...

  10. 章节1-Grafana Dashboard的简单应用(2)

    目录 使用Grafana创建可视化Dashboard 1. Add data sources - Prometheus 2. 导入 Dashboard 模板 2.1 Node Exporter for ...