在 iOS 中从 Google 的 GEOLocation 获取 ZERO_RESULTS 响应。

Posted

技术标签:

【中文标题】在 iOS 中从 Google 的 GEOLocation 获取 ZERO_RESULTS 响应。【英文标题】:Getting ZERO_RESULTS Response from Google's GEOLocation in iOS. 【发布时间】:2012-03-16 20:50:37 【问题描述】:

我正在尝试使用 xcode 实现 google 的地理位置。当我传递带有纬度和经度的url时,它返回以下结果

<?xml version="1.0" encoding="UTF-8"?>
<GeocodeResponse>
 <status>ZERO_RESULTS</status>
</GeocodeResponse>

但是当我直接浏览网址时。它给出了正确的结果。 示例网址:http://maps.googleapis.com/maps/api/geocode/xml?latlng=68.56066,76.8803&sensor=true

coord.latitude = 68.56066;
coord.longitude = 76.8803;

NSString *urlStr = [NSString stringWithFormat:@"http://maps.googleapis.com/maps/api/geocode/xml?latlng=%f,%f&sensor=true",coord.latitude,coord.longitude];
       NSURL *url = [NSURL URLWithString:urlStr];


    [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];


    NSData *xmlData = [NSData dataWithContentsOfURL:url];

    [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
    NSString *str = [[NSString alloc]initWithData:xmlData encoding:NSUTF8StringEncoding];
      NSLog(@"XML Data is %@",str);

我需要获取 xml 结果。我的代码有问题吗。当我在谷歌网站上检查 ZERO_RESULTS 时。他们是这样提的..

ZERO_RESULTS 表示搜索成功但未返回任何结果。如果搜索是在远程位置传递的,则可能会发生这种情况。

任何想法...

【问题讨论】:

【参考方案1】:

如果您想获得谷歌的地理定位服务,那么您需要获得访问密钥。

您可以使用以下网址获取访问密钥 https://code.google.com/apis/console/

使用用户 gmail 帐户登录。转到左侧的Services标签并打开place api然后它会询问服务器名称提供一些服务器名称。我给了http://facebook.com。之后转到左侧的 API 访问标签。它将显示所有启用的服务。在这里,您可以获得类似于 AIMjkUluYsB1G2t5u5p0IIQmsHgiga5F0-8c 的 API KEY。在以下 URL 最后一个参数中使用该键。

XML 响应: http://maps.google.com/maps/geo?output=xml&oe=utf-8&ll=latitude,logitiude&key=AddYourOwnKeyHere

JSON 响应 http://maps.google.com/maps/geo?output=json&oe=utf-8&ll=latitude,logitiude&key=AddYourOwnKeyHere

示例: http://maps.google.com/maps/geo?output=xml&oe=utf-8&ll=12.922499,77.639354&key=AIMjkUluYsB1G2t5u5p0IIQmsHgiga5F0-8c

示例密钥是虚拟密钥。尝试使用您自己的密钥。

我在我的应用程序中尝试过。它工作正常。

【讨论】:

以上是关于在 iOS 中从 Google 的 GEOLocation 获取 ZERO_RESULTS 响应。的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Windows 中从 Google 代码下载/签出项目?

在 google colab 中从 .pyx 文件导入

google vision - 在 c# 中从 google.cloud.vision.v1.entity 注释转换为 json

在 android 应用程序中从 google 和 facebook 注销

如何在 Nuxt/Vuetify 中从头部删除 Google 字体 Roboto?

如何在 App Engine 中从 Google Storage 读取 zip 文件?