Android LocationManager获取经度与纬度等地理信息
利用LocationManager实现定位功能
1 实时更新经度,纬度
2 根据经度和纬度获取地理信息(比如:国家,街道等)(略过)
MainActivity如下:
package cc.bb; import java.util.Iterator; import java.util.List; import android.location.Location; import android.location.LocationListener; import android.location.LocationManager; import android.os.Bundle; import android.widget.TextView; import android.app.Activity; import android.content.Context; /** * Demo描述: * 利用LocationManager实现定位功能 * 1 实时更新经度,纬度 * 2 根据经度和纬度获取地理信息(比如:国家,街道等)(略过) * * * 注意事项: * 0 在测试GPS定位时最好在较为宽广的空间,否则影响定位 * 1 利用mLocationManager.getLastKnownLocation(GPSProvider)获取Location时常为null. * 因为设备定位是需要一定时间的,所以把定位逻辑放在LocationManager的requestLocationUpdates()方法 * * 2 LocationManager.requestLocationUpdates * (String provider, long minTime, float minDistance, LocationListener listener) * 第一个参数:位置信息的provider,比如GPS * 第二个参数:更新位置信息的时间间隔,单位毫秒 * 第三个参数:更新位置信息的距离间隔,单位米 * 第四个参数:位置信息变化时的回调 * * 3 LocationListener中最重要的回调方法onLocationChanged() * 当minTime和minDistance同时满足时会调用该方法.文档说明: * The minDistance parameter can also be used to control the * frequency of location updates. If it is greater than 0 then the * location provider will only send your application an update when * the location has changed by at least minDistance meters, AND * at least minTime milliseconds have passed. * 比如间隔时间(minTime)到了3秒并且移动的距离(minDistance)大于了5米 * 那么就会调用该方法. * * 4 在Activity的onDestroy()时取消地理位置的更新. * * * 权限配置: * <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> * <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> * <uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION"/> * <uses-permission android:name="android.permission.INTERNET"/> */ public class MainActivity extends Activity { private Context mContext; private TextView mTextView; private LocationManager mLocationManager; private LocationListenerImpl mLocationListenerImpl; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); init(); initLocationManager(mContext); } private void init(){ mContext=this; mTextView=(TextView) findViewById(R.id.textView); } private void initLocationManager(Context context){ mLocationManager=(LocationManager)context.getSystemService(Context.LOCATION_SERVICE); //获取可用的位置信息Provider.即passive,network,gps中的一个或几个 List<String> providerList=mLocationManager.getProviders(true); for (Iterator<String> iterator = providerList.iterator(); iterator.hasNext();) { String provider = (String) iterator.next(); System.out.println("provider="+provider); } //在此采用GPS的方式获取位置信息 String GPSProvider=LocationManager.GPS_PROVIDER; Location location=mLocationManager.getLastKnownLocation(GPSProvider); if (location!=null) { double longitude=location.getLongitude(); double altitude=location.getAltitude(); System.out.println("longitude="+longitude+",altitude="+altitude); } else { System.out.println("location==null"); } //注册位置监听 mLocationListenerImpl=new LocationListenerImpl(); mLocationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 3000, 5, mLocationListenerImpl); } private class LocationListenerImpl implements LocationListener{ //当设备位置发生变化时调用该方法 @Override public void onLocationChanged(Location location) { if (location!=null) { showLocation(location); } } //当provider的状态发生变化时调用该方法.比如GPS从可用变为不可用. @Override public void onStatusChanged(String provider, int status, Bundle extras) { } //当provider被打开的瞬间调用该方法.比如用户打开GPS @Override public void onProviderEnabled(String provider) { } //当provider被关闭的瞬间调用该方法.比如关闭打开GPS @Override public void onProviderDisabled(String provider) { } } private void showLocation(Location location) { // 获取经度 double longitude = location.getLongitude(); // 获取纬度 double altitude = location.getAltitude(); String message="经度为:"+longitude+"\n"+"纬度为:"+altitude; mTextView.setText(message); } @Override protected void onDestroy() { super.onDestroy(); if (mLocationManager!=null) { mLocationManager.removeUpdates(mLocationListenerImpl); } } }
main.xml如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" > <TextView android:id="@+id/textView" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_centerInParent="true" android:gravity="center" /> </RelativeLayout>
如有疑问请留言或者到本站社区交流讨论,本站关于Android开发的文章还有很多,希望大家多多搜索查阅,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
本文向大家介绍Android编程获取地理位置的经度和纬度实例,包括了Android编程获取地理位置的经度和纬度实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了Android编程获取地理位置的经度和纬度。分享给大家供大家参考,具体如下: 在Android应用程序中,可以使用LocationManager来获取移动设备所在的地理位置信息。看如下实例:新建android应用程序TestLoc
我有一个onCreate的活动,它计算您的位置和附近的事件之间的距离,我使用lastNotnloceto获取当前设备位置并在谷歌地图上标记它,但我需要它来写经度和纬度它的方法之外用于计算距离。 我已经使用LocationManager来获取粗略的坐标,但这些坐标不够准确,对于距离不到半英里的东西来说,距离为50英里。我目前拥有它,因此将覆盖从LocationManager获得的经度和纬度,但它没有
问题内容: 在Python中使用GDAL,如何获取GeoTIFF文件的纬度和经度? GeoTIFF似乎没有存储任何坐标信息。而是存储XY原点坐标。但是,XY坐标不提供左上角和左下角的纬度和经度。 看来我需要做一些数学运算才能解决这个问题,但是我不知道从哪里开始。 执行此操作需要什么程序? 我知道该方法对此很重要,但是,我不知道该怎么做。 问题答案: 要获取您的Geotiff角的坐标,请执行以下操作
提前感谢!
本文向大家介绍python通过百度地图API获取某地址的经纬度详解,包括了python通过百度地图API获取某地址的经纬度详解的使用技巧和注意事项,需要的朋友参考一下 前言 这几天比较空闲,就接触了下百度地图的API(开发者中心链接地址:http://developer.baidu.com),发现调用还是挺方便的,本文将给大家详细的介绍关于python通过百度地图API获取某地址的经纬度的相关内容
本文向大家介绍百度地图经纬度转换到腾讯地图/Google 对应的经纬度,包括了百度地图经纬度转换到腾讯地图/Google 对应的经纬度的使用技巧和注意事项,需要的朋友参考一下 实现目的:将百度地图经纬度 转换到 腾讯地图/Google 对应的经纬度. 方法1:使用代码进行转换 存在的问题:转换之后误差大,基本不可用 方法2: 该网站提供转换服务,坐标较为准确,可用,后台调用没有仔细研究 http:
Highmaps 从 1.1.0 开始支持经纬度定位功能,该功能依赖第三方库 proj4js(需要在 Highmaps 之前引入),最新版的文件可以从 cdnjs 上获取 <script src="https://cdn.bootcdn.net/ajax/libs/proj4js/2.7.2/proj4.js"></script> 有了经纬度支持后,我们可以通过 lon 和 lat 属性来指定经
问题内容: 我在SQLite数据库中存储了经度和纬度数据,我想获取与所输入参数最接近的位置(例如,我当前的位置-纬度/经度等)。 我知道这在MySQL中是可能的,并且我已经做了大量的研究,认为SQLite需要Haversine公式的自定义外部函数(计算球体上的距离),但是我还没有发现任何用Java编写并且可以工作的东西。 另外,如果要添加自定义功能,则需要org.sqlite.jar(用于org.