如何使用 Android 确定最近、最大的城市名称?
我想知道如何根据手机当前位置或 Android 设备上的 IP 地址获取最近的城市名称。我愿意使用其他 API 将 GPS 坐标或 IP 地址转换为城市名称。做到这一点的最佳方法是什么? (我没有使用 Google 地图前端,但我愿意使用 API)。
最好的
I was wondering how I would go about getting the closest city name based on the phones current location or IP address on an Android device. I'm open to using other APIs in order to translate GPS coordinates or IP addresses to city names. What is the best method to do this? (I'm not using the Google Maps front end but I'd be open to using the API).
Best
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 android.location.Geocoder 包中提供的 GeoCoder。 JavaDocs在这里
JavaDocs 此处
示例代码
You can us the GeoCoder which is avalilable in android.location.Geocoder package. The JavaDocs are here
JavaDocs here
Sample Code