android GPS 获取城市信息

标签: android gps 城市 | 发表时间:2013-03-19 09:50 | 作者:love_xiaozhao
出处:http://blog.csdn.net
1、取得用户当前位置的经度,纬度。 

2、根据经纬度转换成城市名称。

取得用户当前位置的经度,纬度

今天弄了一个多小时,写了一个GPS获取地理位置代码的小例子,包括参考了网上的一些代码,并且对代码进行了一些修改,希望对大家的帮助。具体代码如下:  要实用Adnroid平台的GPS设备,首先需要添加上权限,所以需要添加如下权限:  

 

   
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>

 

具体实现代码如下:

首先判断GPS模块是否存在或者是开启:

 

[java]  view plain copy
  1. private void openGPSSettings() {  
  2.         LocationManager alm = (LocationManager) this  
  3.                 .getSystemService(Context.LOCATION_SERVICE);  
  4.         if (alm  
  5.                 .isProviderEnabled(android.location.LocationManager.GPS_PROVIDER)) {  
  6.             Toast.makeText(this, "GPS模块正常", Toast.LENGTH_SHORT)  
  7.                     .show();  
  8.             return;  
  9.         }  
  10.   
  11.         Toast.makeText(this, "请开启GPS!", Toast.LENGTH_SHORT).show();  
  12.         Intent intent = new Intent(Settings.ACTION_SECURITY_SETTINGS);  
  13.         startActivityForResult(intent,0); //此为设置完成后返回到获取界面  
  14.   
  15.     }  

如果开启正常,则会直接进入到显示页面,如果开启不正常,则会进行到GPS设置页面:

获取代码如下:

[java]  view plain copy
  1. private void getLocation()  
  2.     {  
  3.         // 获取位置管理服务  
  4.         LocationManager locationManager;  
  5.         String serviceName = Context.LOCATION_SERVICE;  
  6.         locationManager = (LocationManager) this.getSystemService(serviceName);  
  7.         // 查找到服务信息  
  8.         Criteria criteria = new Criteria();  
  9.         criteria.setAccuracy(Criteria.ACCURACY_FINE); // 高精度  
  10.         criteria.setAltitudeRequired(false);  
  11.         criteria.setBearingRequired(false);  
  12.         criteria.setCostAllowed(true);  
  13.         criteria.setPowerRequirement(Criteria.POWER_LOW); // 低功耗  
  14.   
  15.         String provider = locationManager.getBestProvider(criteria, true); // 获取GPS信息  
  16.         Location location = locationManager.getLastKnownLocation(provider); // 通过GPS获取位置  
  17.         updateToNewLocation(location);  
  18.         // 设置监听器,自动更新的最小时间为间隔N秒(1秒为1*1000,这样写主要为了方便)或最小位移变化超过N米  
  19.         locationManager.requestLocationUpdates(provider, 100 * 1000, 500,  
  20.                 locationListener);    }  


到这里就可以获取到地理位置信息了,但是还是要显示出来,那么就用下面的方法进行显示:

 

[java]  view plain copy
  1. private void updateToNewLocation(Location location) {  
  2.   
  3.         TextView tv1;  
  4.         tv1 = (TextView) this.findViewById(R.id.tv1);  
  5.         if (location != null) {  
  6.             double  latitude = location.getLatitude();  
  7.             double longitude= location.getLongitude();  
  8.             tv1.setText("维度:" +  latitude+ "\n经度" + longitude);  
  9.         } else {  
  10.             tv1.setText("无法获取地理信息");  
  11.         }  
  12.   
  13.     }  

这样子就能获取到当前使用者所在的地理位置了,至少如何下地图上实现,在下面将进行获取,并显示出来!对参考代码的人表示感谢!


根据经纬度转换成城市名称

经纬度转换成城市名称,只能使用地图服务了。自己做不来。

地图服务API有两个,一个是百度地图,一个是谷歌地图。百度地图API调用需要注册百度帐号,并申请APP_KEY,谷歌地图API直接调用即可。

百度地图API调用地址:http://api.map.baidu.com/geocoder?output=json&location=纬度,经度&key=APP_KEY

谷歌地图服务API调用地址:http://maps.google.com/maps/api/geocode/json?latlng= 纬度,经度 &language=zh-CN&sensor=true

可以设置返回数据格式,JSON或者XML。


百度返回的JSON数据如下:

[java]  view plain copy
  1. {  
  2.     "status":"OK",  
  3.     "result":{  
  4.         "location":{  
  5.             "lng":112.091446,  
  6.             "lat":34.123231  
  7.         },  
  8.         "formatted_address":"河南省洛阳市嵩县洛栾线",  
  9.         "business":"",  
  10.         "addressComponent":{  
  11.             "city":"洛阳市",  
  12.             "district":"嵩县",  
  13.             "province":"河南省",  
  14.             "street":"洛栾线",  
  15.             "street_number":""  
  16.         },  
  17.         "cityCode":153  
  18.     }  
  19. }  

Google返回的JSON数据如下:

[java]  view plain copy
  1. {  
  2.    "results" : [  
  3.       {  
  4.          "address_components" : [  
  5.             {  
  6.                "long_name" : "石磊街",  
  7.                "short_name" : "石磊街",  
  8.                "types" : [ "route" ]  
  9.             },  
  10.             {  
  11.                "long_name" : "嵩县",  
  12.                "short_name" : "嵩县",  
  13.                "types" : [ "sublocality", "political" ]  
  14.             },  
  15.             {  
  16.                "long_name" : "洛阳",  
  17.                "short_name" : "洛阳",  
  18.                "types" : [ "locality", "political" ]  
  19.             },  
  20.             {  
  21.                "long_name" : "河南省",  
  22.                "short_name" : "河南省",  
  23.                "types" : [ "administrative_area_level_1", "political" ]  
  24.             },  
  25.             {  
  26.                "long_name" : "中国",  
  27.                "short_name" : "CN",  
  28.                "types" : [ "country", "political" ]  
  29.             },  
  30.             {  
  31.                "long_name" : "471400",  
  32.                "short_name" : "471400",  
  33.                "types" : [ "postal_code" ]  
  34.             }  
  35.          ],  
  36.          "formatted_address" : "中国河南省洛阳市嵩县石磊街 邮政编码: 471400",  
  37.          "geometry" : {  
  38.             "bounds" : {  
  39.                "northeast" : {  
  40.                   "lat" : 34.12707180,  
  41.                   "lng" : 112.08963580  
  42.                },  
  43.                "southwest" : {  
  44.                   "lat" : 34.12574650,  
  45.                   "lng" : 112.08785710  
  46.                }  
  47.             },  
  48.             "location" : {  
  49.                "lat" : 34.12640920,  
  50.                "lng" : 112.08874650  
  51.             },  
  52.             "location_type" : "APPROXIMATE",  
  53.             "viewport" : {  
  54.                "northeast" : {  
  55.                   "lat" : 34.12775813029150,  
  56.                   "lng" : 112.0900954302915  
  57.                },  
  58.                "southwest" : {  
  59.                   "lat" : 34.12506016970850,  
  60.                   "lng" : 112.0873974697085  
  61.                }  
  62.             }  
  63.          },  
  64.          "types" : [ "route" ]  
  65.       },  
  66.       {  
  67.          "address_components" : [  
  68.             {  
  69.                "long_name" : "471400",  
  70.                "short_name" : "471400",  
  71.                "types" : [ "postal_code" ]  
  72.             },  
  73.             {  
  74.                "long_name" : "嵩县",  
  75.                "short_name" : "嵩县",  
  76.                "types" : [ "sublocality", "political" ]  
  77.             },  
  78.             {  
  79.                "long_name" : "洛阳",  
  80.                "short_name" : "洛阳",  
  81.                "types" : [ "locality", "political" ]  
  82.             },  
  83.             {  
  84.                "long_name" : "河南省",  
  85.                "short_name" : "河南省",  
  86.                "types" : [ "administrative_area_level_1", "political" ]  
  87.             },  
  88.             {  
  89.                "long_name" : "中国",  
  90.                "short_name" : "CN",  
  91.                "types" : [ "country", "political" ]  
  92.             }  
  93.          ],  
  94.          "formatted_address" : "中国河南省洛阳市嵩县 邮政编码: 471400",  
  95.          "geometry" : {  
  96.             "bounds" : {  
  97.                "northeast" : {  
  98.                   "lat" : 34.15635430,  
  99.                   "lng" : 112.47980870  
  100.                },  
  101.                "southwest" : {  
  102.                   "lat" : 34.11958570,  
  103.                   "lng" : 112.08340650  
  104.                }  
  105.             },  
  106.             "location" : {  
  107.                "lat" : 34.13457310,  
  108.                "lng" : 112.08557980  
  109.             },  
  110.             "location_type" : "APPROXIMATE",  
  111.             "viewport" : {  
  112.                "northeast" : {  
  113.                   "lat" : 34.13770670,  
  114.                   "lng" : 112.09532960  
  115.                },  
  116.                "southwest" : {  
  117.                   "lat" : 34.11958570,  
  118.                   "lng" : 112.08340650  
  119.                }  
  120.             }  
  121.          },  
  122.          "types" : [ "postal_code" ]  
  123.       },  
  124.       {  
  125.          "address_components" : [  
  126.             {  
  127.                "long_name" : "嵩县",  
  128.                "short_name" : "嵩县",  
  129.                "types" : [ "sublocality", "political" ]  
  130.             },  
  131.             {  
  132.                "long_name" : "洛阳",  
  133.                "short_name" : "洛阳",  
  134.                "types" : [ "locality", "political" ]  
  135.             },  
  136.             {  
  137.                "long_name" : "河南省",  
  138.                "short_name" : "河南省",  
  139.                "types" : [ "administrative_area_level_1", "political" ]  
  140.             },  
  141.             {  
  142.                "long_name" : "中国",  
  143.                "short_name" : "CN",  
  144.                "types" : [ "country", "political" ]  
  145.             }  
  146.          ],  
  147.          "formatted_address" : "中国河南省洛阳市嵩县",  
  148.          "geometry" : {  
  149.             "bounds" : {  
  150.                "northeast" : {  
  151.                   "lat" : 34.34610090,  
  152.                   "lng" : 112.37709810  
  153.                },  
  154.                "southwest" : {  
  155.                   "lat" : 33.57053370,  
  156.                   "lng" : 111.7026910  
  157.                }  
  158.             },  
  159.             "location" : {  
  160.                "lat" : 34.1345170,  
  161.                "lng" : 112.0856350  
  162.             },  
  163.             "location_type" : "APPROXIMATE",  
  164.             "viewport" : {  
  165.                "northeast" : {  
  166.                   "lat" : 34.34610090,  
  167.                   "lng" : 112.37709810  
  168.                },  
  169.                "southwest" : {  
  170.                   "lat" : 33.57053370,  
  171.                   "lng" : 111.7026910  
  172.                }  
  173.             }  
  174.          },  
  175.          "types" : [ "sublocality", "political" ]  
  176.       },  
  177.       {  
  178.          "address_components" : [  
  179.             {  
  180.                "long_name" : "洛阳",  
  181.                "short_name" : "洛阳",  
  182.                "types" : [ "locality", "political" ]  
  183.             },  
  184.             {  
  185.                "long_name" : "河南省",  
  186.                "short_name" : "河南省",  
  187.                "types" : [ "administrative_area_level_1", "political" ]  
  188.             },  
  189.             {  
  190.                "long_name" : "中国",  
  191.                "short_name" : "CN",  
  192.                "types" : [ "country", "political" ]  
  193.             }  
  194.          ],  
  195.          "formatted_address" : "中国河南省洛阳市",  
  196.          "geometry" : {  
  197.             "bounds" : {  
  198.                "northeast" : {  
  199.                   "lat" : 35.07023590,  
  200.                   "lng" : 112.98473820  
  201.                },  
  202.                "southwest" : {  
  203.                   "lat" : 33.57053370,  
  204.                   "lng" : 111.13844390  
  205.                }  
  206.             },  
  207.             "location" : {  
  208.                "lat" : 34.6184520,  
  209.                "lng" : 112.454290  
  210.             },  
  211.             "location_type" : "APPROXIMATE",  
  212.             "viewport" : {  
  213.                "northeast" : {  
  214.                   "lat" : 34.83072270,  
  215.                   "lng" : 112.66242380  
  216.                },  
  217.                "southwest" : {  
  218.                   "lat" : 34.48078050,  
  219.                   "lng" : 112.23389270  
  220.                }  
  221.             }  
  222.          },  
  223.          "types" : [ "locality", "political" ]  
  224.       },  
  225.       {  
  226.          "address_components" : [  
  227.             {  
  228.                "long_name" : "河南省",  
  229.                "short_name" : "河南省",  
  230.                "types" : [ "administrative_area_level_1", "political" ]  
  231.             },  
  232.             {  
  233.                "long_name" : "中国",  
  234.                "short_name" : "CN",  
  235.                "types" : [ "country", "political" ]  
  236.             }  
  237.          ],  
  238.          "formatted_address" : "中国河南省",  
  239.          "geometry" : {  
  240.             "bounds" : {  
  241.                "northeast" : {  
  242.                   "lat" : 36.36656020,  
  243.                   "lng" : 116.65223210  
  244.                },  
  245.                "southwest" : {  
  246.                   "lat" : 31.38237110,  
  247.                   "lng" : 110.3604760  
  248.                }  
  249.             },  
  250.             "location" : {  
  251.                "lat" : 34.768190,  
  252.                "lng" : 113.6872280  
  253.             },  
  254.             "location_type" : "APPROXIMATE",  
  255.             "viewport" : {  
  256.                "northeast" : {  
  257.                   "lat" : 36.36656020,  
  258.                   "lng" : 116.65223210  
  259.                },  
  260.                "southwest" : {  
  261.                   "lat" : 31.38237110,  
  262.                   "lng" : 110.3604760  
  263.                }  
  264.             }  
  265.          },  
  266.          "types" : [ "administrative_area_level_1", "political" ]  
  267.       },  
  268.       {  
  269.          "address_components" : [  
  270.             {  
  271.                "long_name" : "中国",  
  272.                "short_name" : "CN",  
  273.                "types" : [ "country", "political" ]  
  274.             }  
  275.          ],  
  276.          "formatted_address" : "中国",  
  277.          "geometry" : {  
  278.             "bounds" : {  
  279.                "northeast" : {  
  280.                   "lat" : 53.56097399999999,  
  281.                   "lng" : 134.77280990  
  282.                },  
  283.                "southwest" : {  
  284.                   "lat" : 18.15352160,  
  285.                   "lng" : 73.49941360  
  286.                }  
  287.             },  
  288.             "location" : {  
  289.                "lat" : 35.861660,  
  290.                "lng" : 104.1953970  
  291.             },  
  292.             "location_type" : "APPROXIMATE",  
  293.             "viewport" : {  
  294.                "northeast" : {  
  295.                   "lat" : 53.56097399999999,  
  296.                   "lng" : 134.77280990  
  297.                },  
  298.                "southwest" : {  
  299.                   "lat" : 18.15352160,  
  300.                   "lng" : 73.49941360  
  301.                }  
  302.             }  
  303.          },  
  304.          "types" : [ "country", "political" ]  
  305.       }  
  306.    ],  
  307.    "status" : "OK"  
  308. }  
作者:love_xiaozhao 发表于2013-3-19 9:50:57 原文链接
阅读:0 评论:0 查看评论

相关 [android gps 城市] 推荐:

android GPS 获取城市信息

- - CSDN博客移动开发推荐文章
1、取得用户当前位置的经度,纬度. 取得用户当前位置的经度,纬度. 今天弄了一个多小时,写了一个GPS获取地理位置代码的小例子,包括参考了网上的一些代码,并且对代码进行了一些修改,希望对大家的帮助. 具体代码如下:  要实用Adnroid平台的GPS设备,首先需要添加上权限,所以需要添加如下权限:  .

android gps开发必备资料(含测试demo下载)

- - CSDN博客推荐文章
int year = ca.get(Calendar.YEAR);//获取年份. int month=ca.get(Calendar.MONTH);//获取月份. int day=ca.get(Calendar.DATE);//获取日. int minute=ca.get(Calendar.MINUTE);//分.

Android中通过当前经纬度获得城市

- - CSDN博客移动开发推荐文章
  * 借助Google MAP 通过用户当前经纬度 获得用户当前城市.  private String city="全国";.   //只是简单的获取城市 不需要实时更新 所以这里先注释. //      //当坐标改变时触发此函数,如果Provider传进相同的坐标,它就不会被触发 . //      System.out.println(".onProviderDisabled(关闭)"+arg0);.

GPS是如何扭曲时间的?

- 陈涛 - 果壳网 guokr.com - 果壳网
相对论的证据在你车上的GPS即全球定位系统里就能找到,GPS系统有24颗卫星,卫星发出有时间戳和自身位置的信息,而GPS只是接受信号. 你的GPS装置会记录从卫星上受到信息时的确切时间点,之后计算出信号从卫星传到你的GPS走了多长距离. 通过把所用时间和光速相乘,就可以知道你离每颗卫星有多远了. 然后比较这些距离,算出你自己所在的位置.

带增强现实(AR)功能的GPS

- Fung - 煎蛋
日本 Pioneer 公司近日展示了他们先进的 GPS 导航仪技术,在这里面,我们看到了增强现实系统的应用. 在他们最新合作的汽车中,一个仪表盘会直接通过汽车前置摄像头,获取路面情况,并实时分析车距、车速等交通数据,且直接显示到摄像头的实时信息上. 这个东西能让开车变得更加简单,简单得就好似在玩山脊赛车一般.

世界上最小的GPS接收机

- zffl - 译言-电脑/网络/数码科技
译者 cyber-china. 整个GPS系统,包括电池和供下载数据的无线发射机,比硬币还小. 有了足够小巧的GPS传感器,就可以跟踪定位任何事物,无论是丢失的钥匙还是跑失的爱犬. 因为当今世界最小的 GPS接收机比1便士的硬币还小,重量近0.3克. 那么,加上其他电子器件,使之成为一个有用系统,并遥控下载记录的数据,它会变成多大呢.

室内GPS定位初露峥嵘

- bill - cnBeta.COM
全球定位系统(GPS)自从1973年诞生以来已经走过了漫长的道路. 今天,任何一部配备GPS功能的手机都能自动接收来自我们头顶的24个GPS卫星的信号,将其用于Foursquare的签到功能中. 此外,在交通管理、交通管理,导航,军事行动和紧急医疗服务等方面,GPS也大有作为.

TeleNav实现网页GPS导航

- - Tech2IPO
TeleNav 似乎是要证明浏览器才是移动设备上真正的杀手应用,他们使用HTML5为其移动app实现了GPS导航功能. 这一服务只需浏览器即可实现,且完全免费,因为他完全不需要设备上的 app store 之类的服务参与. 在上个世纪90年代早期,Web 刚刚开始发展的时候,恐怕没人能想到通过浏览器就可以进行GPS导航,或者是餐馆可以使用Web app 来进行订餐.

关于 Galaxy Nexus 内置气压计的讨论:“2D GPS”和“3D GPS”

- Floater - 爱范儿 · Beats of Bits
Google 和三星联手在上周发布了新款的 Galaxy Nexus ,这款手机搭载了很多“新玩意”,比如说气压计(Barometer ). 在随后的媒体评论和开发者讨论中,都认为手机内置气压计是为了预测天气,帮助开发者做出更准确的天气类 App. 但是 Google 工程师 Dan Morrill 在 Google+ 上描述了气压计的作用:.

北京GPS数据揭示交通拥堵原因

- hao - Solidot
北京是世界著名的堵城之一,城市规则者多年来一直试图通过增加新公路或新的公交线路、或者加强交通执法,去减轻交通压力. 微软亚洲研究院的研究人员,利用2009和2010年两年中3月至5月间33,000辆北京出租车的GPS行驶数据,试图识别出交通问题的真正根源. 微软研究人员在上周清华大学举行的全球普适计算大会UbiComp上介绍了他们的论文《基于出租车数据的城市计算》.