从获取的坐标中获取位置名称
我拥有的:目前我的应用程序仅告诉我当前位置的坐标。
我想要的:从GPS获取的坐标中获取位置名称,这样我就可以知道我到底在哪里。 (地点名称)
What i have: currently my app is only telling me the coordinates of my current location.
What i want: Get location name from coordinates fetched by gps, so that i could know where exactly i am. (Name of location)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是从获取长纬度到获取地址的完整代码:
Here is complete code from fetching long - lat to getting address:
您可以使用 android.location.
Geocoder
包中提供的GeoCoder
。 JavaDocs 为您提供了完整的解释。 u 可能的样本。结果
将返回位置的名称。You can us the
GeoCoder
which is available in android.location.Geocoder
package. The JavaDocs gives u full explaination. The possible sample for u.The
result
will return the name of the location.这里我给出了一个,只需在这个函数中传递纬度和经度,然后你就得到了与该纬度和经度相关的所有信息。
我希望你能得到你的答案的解决方案。
Here i am given a single just pass the latitude and longitude in this function then you got all the information related to this latitude and longitude.
I hope you get the solution to your answer.