谷歌地图 http 请求不起作用

Posted

技术标签:

【中文标题】谷歌地图 http 请求不起作用【英文标题】:Google Maps http request not working 【发布时间】:2010-08-24 22:02:27 【问题描述】:

我正在尝试使用对谷歌地图的 http 请求来使用 JSON 获取两个位置之间的行驶距离。但是,这些在浏览器中的处理方式似乎与在 (iphone) 应用程序中的处理方式不同。

我使用坐标和 %20(空格)创建了一个保存 URL 的 NSString。我 NSLog() 确定 URL,它看起来没问题(即它在浏览器中工作正常并且 看起来 很好)......但是当 NSLogging 使用该 URL 的内容初始化字符串时,我得到(空)。

代码如下:

NSString *urlString=[[NSString alloc] initWithFormat:@"http://maps.google.com/maps/nav?q=from:%.7f%@%.7f%@to:%.7f%@%.7f", testLocation.coordinate.latitude, @"%%20", testLocation.coordinate.longitude, @"%%20", thePark.coordinate.latitude, @"%%20", thePark.coordinate.longitude];

然后我 NSLog() 并得到http://maps.google.com/maps/nav?q=from:51.4986110%20-0.1236110%20to:51.4960938%20-0.2200041 ...无济于事。

NSString *json=[[NSString alloc] initWithContentsOfURL:[NSURL URLWithString:urlString]];

当我 NSLog() 时,它会打印 null。有没有人对为什么会发生这种情况或更简单的方法有任何建议?我打算然后解析 JSON 并获得行驶距离

【问题讨论】:

【参考方案1】:

您应该使用“stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding”转义 urlString,而不是使用 %20 手动转义。


编辑:

我用这3行代码测试,得到了json字符串。

NSString *urlString=[[[[NSString alloc] initWithFormat:@"http://maps.google.com/maps/nav?q=from:%.7f %.7f to:%.7f %.7f", 51.4986110, -0.1236110, 51.4960938, -0.2200041] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding] autorelease];

NSString *json=[[[NSString alloc] initWithContentsOfURL:[NSURL URLWithString:urlString]] autorelease];
NSLog(@"json = %@", json);

【讨论】:

我现在在从该 URL 的内容初始化一个新字符串时得到 EXC_BAD_ACCESS。 NSLogging URL 现在显示为:maps.google.com/maps/nav?q=from:51.4986110220to:51.49609382 如果我把它分成两行: NSString *url=[[NSString alloc] initWithFormat:@"maps.google.com/maps/nav?q=from:%.7f %.7f to:%.7f %.7f", 51.4986110, -0.1236110 , 51.4960938, -0.2200041]; NSString *url2=[url stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; NSLog 第一个 URL:maps.google.com/maps/nav?q=from:51.4986110 -0.1236110 到:51.4960938 -0.2200041 NSLog 第二个 URL:maps.google.com/maps/nav?q=from:51.4986110220to:51.49609382 然后给出“操作无法完成。(Cocoa 错误 256。)”虽然它没有崩溃 谢谢 - 现在工作正常。但是有一个问题:为什么它们必须自动发布?确定使用 alloc 就足够了吗? autorelease 用于使 NSString 对象在运行循环结束时从内存中释放。你肯定需要知道 Cocoa 内存管理才能在 iPhone 上编程。这是规则的链接。 developer.apple.com/iphone/library/documentation/cocoa/…

以上是关于谷歌地图 http 请求不起作用的主要内容,如果未能解决你的问题,请参考以下文章

谷歌地图iso瓦片层不起作用GMSTileURLConstructor GMSURLTileLayer

Flutter - 谷歌地图折线模式不起作用

谷歌地图在 App Engine 开发服务器上的 Django 模板中不起作用

在发布模式下颤振谷歌地图不起作用

颤动我的谷歌地图在发布版本上不起作用或显示

为什么属性“半径”不起作用getPlacePredictions谷歌地图