android获取gps坐标

 Android的强大表现在各个方面,在这里介绍一下其中的一个自动获取所在地理位置坐标的功能。Android中通过LocationManager来获取地理位置等相关信息的。
  首先,需要获取LocationManager实例。
  //获得当前位置的坐标
  LocationManager locationManager = (LocationManager)
  getSystemService(LOCATION_SERVICE);//获取LocationManager的一个实例
  locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,
  10000, 0, locationListener);
  /*注册一个周期性的位置更新 每隔1000ms更新一次,并且不考虑位置的变化。
  最后一个参数是LocationListener的一个引用*/
  Location location = locationManager.getLastKnownLocation
  (LocationManager.GPS_PROVIDER);
  String latitude = Double.toString(location.getLatitude());//经度
  String longitude = Double.toString(location.getLongitude());//纬度
  String altitude = Double.toString(location.getAltitude());//海拔
  //输出文字
  TextView tv = (TextView) this.findViewById(R.id.local);
  tv.setText("latitude:"+latitude+" longitude:"+longitude
  +" altitude:"+altitude+" ");
  实现LocationListener的引用
  private final LocationListener locationListener = new LocationListener() {
  public void onLocationChanged(Location location) {
  //当坐标改变时触发此函数,如果Provider传进相同的坐标,它就不会被触发
  if (location != null) {
  String latitude = Double.toString(location.getLatitude());//经度
  String longitude = Double.toString(location.getLongitude());//纬度
  String altitude = Double.toString(location.getAltitude());//海拔
  //输出文字
  TextView tv = (TextView) findViewById(R.id.local);
  tv.setText("latitude:"+latitude+" longitude:"
  +longitude+" altitude:"+altitude+" ");
  }
  }
  public void onProviderDisabled(String provider) {

  
  // Provider被disable时触发此函数,比如GPS被关闭
  }
  public void onProviderEnabled(String provider) {
  // Provider被enable时触发此函数,比如GPS被打开
  }
  public void onStatusChanged(String provider, int status, Bundle extras) {
  // Provider的转态在可用、暂时不可用和无服务三个状态直接切换时触发此函数
  }
  };
  最后我们在AndroidManifest.xml中加入GPS权限
  
  如果是在模拟器中调试,可以打开”Window” ?>”Show View” 中打开”Emulator Control” View即可手动设置,或通过KML和GPX文件来设置一个坐标。
  或者使用geo命令,开始?> 运行?>输入 telnet 5554,然后在命令行下输入 geo fix -39.4 116.9 326 ,这三个参数分别代表了经度、纬度和海拔(海拔可不写)
  这样我们就可以获取所在位置的坐标了

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值