如何使用 Android 确定最近、最大的城市名称?

发布于 2024-11-11 07:45:21 字数 144 浏览 1 评论 0原文

我想知道如何根据手机当前位置或 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

止于盛夏 2024-11-18 07:45:21

您可以使用 android.location.Geocoder 包中提供的 GeoCoder。 JavaDocs在这里
JavaDocs 此处

示例代码

List<Address> list = geoCoder.getFromLocation(location
                    .getLatitude(), location.getLongitude(), 1);
            if (list != null & list.size() > 0) {
                Address address = list.get(0);
                result = address.getLocality();
                return result;

You can us the GeoCoder which is avalilable in android.location.Geocoder package. The JavaDocs are here
JavaDocs here

Sample Code

List<Address> list = geoCoder.getFromLocation(location
                    .getLatitude(), location.getLongitude(), 1);
            if (list != null & list.size() > 0) {
                Address address = list.get(0);
                result = address.getLocality();
                return result;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文