获取Android应用程序的当前位置地址
我不需要显示地图。但是,我需要使用 gps/3g 网络来定位我当前的位置地址(不是长和纬度),然后将其添加到自动短信响应中,以通知某人我当前无法回复,&包括我当前位置的字符串地址。 我的短信功能可以正常工作,只需要找出一种访问 GPS 并提取地址的方法。我看过纬度/经度的示例代码。也许我需要将纬度/经度转换为谷歌地图 API 中的地址?我不确定如何去做。 欢迎任何建议/代码片段/类似教程! 谢谢。 :)
I do not need to display a map. However, I need to use the gps/3g network to locate my current positions ADDRESS (not long and lat) this will then be added to a automated sms response to inform a person that I currently cant reply, & the include the string address of my current location.
I have the sms stuff working, just need to figure out a method of accessing the gps and pulling an address. I have seen sample code for lat/long. Perhaps I need to convert lat/long into an address within the google maps API? I am unsure howto go about it.
Any advice/code snippets/similar tutorials welcome!
Thanks. :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有两个步骤:
获取当前位置 - 纬度和纬度。经度、使用 GPS、网络、最后已知位置等。 Android 位置文档包括示例代码。
使用 Android Geocoder 类请求查找以转换纬度/经度到一个地址(您可以轻松地从中提取城市、国家、街道等)。具体来说,需要使用 getFromLocation() 方法
注意:
There are two steps to this:
Get the current location - latitude & longitude, using the GPS, network, last-known location etc. The Android location documentation includes sample code.
Use the Android Geocoder class to request a lookup to convert the lat/long to an Address (from which you can easily extract city, country, street, etc). Specifically, you need to use the getFromLocation() method
Note:
答案在这里: http://developer.android.com/reference/android/ location/Geocoder.html
您需要创建 Geocoder 对象并调用
getFromLocation(double latitude, double longitude, int maxResults)
The answer is here: http://developer.android.com/reference/android/location/Geocoder.html
You need to create Geocoder object and call
getFromLocation(double latitude, double longitude, int maxResults)
如您所知,要获取位置地址,您可以使用 google GeoCoder
除此之外要通过提供纬度和经度来获取位置地址,您可以使用此 API。这比 google Geocoder 更可靠且更快。这里我附上链接和小示例...
API url -
您可以在 url 的等号旁边连接纬度和经度值。
示例 -
lat = 6.123456
lng = 79.123456
字符串 url =
这将返回一个漂亮的jsonObject,您可以使用它,只需尝试一下即可。目前我正在使用此 API 进行位置服务,并且它比普通的 google geoCoder API 更快。要捕获 json 响应,您可以使用 volley 或任何东西。Happy 编码。
As you know for getting location address you can use google GeoCoder
beside that for get location addresses by providing latitude and longitude you can use this API.this is reliable and more faster than google Geocoder.Here i attach the link and small example...
API url -
you can concatenate latitude and longitude value next to equal sign at the url.
example -
lat = 6.123456
lng = 79.123456
String url =
this will return a nice jsonObject and you can play with it, just try this.Currently im using this API for my location services and its more faster than normal google geoCoder API.To catch the json response you can use volley or anything.Happy coding.