欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android中GPS坐标转换为高德地图坐标详解

程序员文章站 2024-02-23 20:32:46
一、坐标分类 地图坐标大致分为几种:       1、gps、wgs84,也就是原始坐标体系,这是国际公认的世界标...

一、坐标分类

地图坐标大致分为几种:

      1、gps、wgs84,也就是原始坐标体系,这是国际公认的世界标准坐标体系;

      2、gcj-02,又称为“火星坐标”,国家测绘局在02年发布的坐标体系,在国内,至少得使用此坐标体系,比如:google、高德、腾讯地图等;

      3、其他特殊坐标体系,一般都是由火星坐标通过偏移算法计算得出的,比如百度使用的是bd-09坐标,搜狗使用的是自己的搜狗坐标。

二、坐标转换

1、使用高德地图sdk转换

public amaplocation fromgpstoamap(location location) { 
    amaplocation amaplocation = new amaplocation(location); 
    coordinateconverter converter = new coordinateconverter(mcontext); 
    converter.from(coordinateconverter.coordtype.gps); 
    try { 
      converter.coord(new dpoint(location.getlatitude(), location.getlongitude())); 
      dpoint deslatlng = converter.convert(); 
      amaplocation.setlatitude(deslatlng.getlatitude()); 
      amaplocation.setlongitude(deslatlng.getlongitude()); 
    } catch (exception e) { 
      e.printstacktrace(); 
    } 
    return amaplocation; 
  } 

但是在我的项目里面,当使用上面方法的高德地图版本的jar包后,编译的时候友盟总是提示我有包冲突,但是经历无数的寻找,都没找出冲突的地方,当我把友盟统计的包引用去掉,编译正常与行了。这里我被友盟坑了,但是必须要保留友盟统计。我只能放弃新的定位包,使用老版本的,也就不能用上面这个方式了。

2、自己转换

通过在网上的搜索,找到一篇文章http://www.eoeandroid.com/forum.php?mod=viewthread&tid=332419,能很好的解决我的问题,也就是我们自己转换坐标,方法如下。

public amaplocation fromgpstoamap(location location) { 
  latlng latlng = new latlng(location.getlatitude(), location.getlongitude()); 
  latlng = coordinateutil.transformfromwgstogcj(latlng); 
  amaplocation amaplocation = new amaplocation(location); 
  amaplocation.setlatitude(latlng.latitude); 
  amaplocation.setlongitude(latlng.longitude); 
 
  return amaplocation; 
} 

coordinateutil.java

public class coordinateutil { 
  private static double a = 6378245.0; 
  private static double ee = 0.00669342162296594323; 
 
  /** 
   * 手机gps坐标转火星坐标 
   * 
   * @param wgloc 
   * @return 
   */ 
  public static latlng transformfromwgstogcj(latlng wgloc) { 
 
    //如果在国外,则默认不进行转换 
    if (outofchina(wgloc.latitude, wgloc.longitude)) { 
      return new latlng(wgloc.latitude, wgloc.longitude); 
    } 
    double dlat = transformlat(wgloc.longitude - 105.0, 
        wgloc.latitude - 35.0); 
    double dlon = transformlon(wgloc.longitude - 105.0, 
        wgloc.latitude - 35.0); 
    double radlat = wgloc.latitude / 180.0 * math.pi; 
    double magic = math.sin(radlat); 
    magic = 1 - ee * magic * magic; 
    double sqrtmagic = math.sqrt(magic); 
    dlat = (dlat * 180.0) / ((a * (1 - ee)) / (magic * sqrtmagic) * math.pi); 
    dlon = (dlon * 180.0) / (a / sqrtmagic * math.cos(radlat) * math.pi); 
 
    return new latlng(wgloc.latitude + dlat, wgloc.longitude + dlon); 
  } 
 
  public static double transformlat(double x, double y) { 
    double ret = -100.0 + 2.0 * x + 3.0 * y + 0.2 * y * y + 0.1 * x * y 
        + 0.2 * math.sqrt(x > 0 ? x : -x); 
    ret += (20.0 * math.sin(6.0 * x * math.pi) + 20.0 * math.sin(2.0 * x 
        * math.pi)) * 2.0 / 3.0; 
    ret += (20.0 * math.sin(y * math.pi) + 40.0 * math.sin(y / 3.0 
        * math.pi)) * 2.0 / 3.0; 
    ret += (160.0 * math.sin(y / 12.0 * math.pi) + 320 * math.sin(y 
        * math.pi / 30.0)) * 2.0 / 3.0; 
    return ret; 
  } 
 
  public static double transformlon(double x, double y) { 
    double ret = 300.0 + x + 2.0 * y + 0.1 * x * x + 0.1 * x * y + 0.1 
        * math.sqrt(x > 0 ? x : -x); 
    ret += (20.0 * math.sin(6.0 * x * math.pi) + 20.0 * math.sin(2.0 * x 
        * math.pi)) * 2.0 / 3.0; 
    ret += (20.0 * math.sin(x * math.pi) + 40.0 * math.sin(x / 3.0 
        * math.pi)) * 2.0 / 3.0; 
    ret += (150.0 * math.sin(x / 12.0 * math.pi) + 300.0 * math.sin(x 
        / 30.0 * math.pi)) * 2.0 / 3.0; 
    return ret; 
  } 
 
  public static boolean outofchina(double lat, double lon) { 
    if (lon < 72.004 || lon > 137.8347) 
      return true; 
    if (lat < 0.8293 || lat > 55.8271) 
      return true; 
    return false; 
  } 
 
} 

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。