gpt4 book ai didi

xcode - 如何使用我的位置自动查找附近的位置?

转载 作者:行者123 更新时间:2023-12-02 07:45:20 27 4
gpt4 key购买 nike

我是 xcode 的新手,但我想要完成的是当您打开应用程序时,它会显示一张 map 、我的位置以及我周围的当前美食地点。我没有自己的数据库用于我尝试使用谷歌来实现此功能的位置。我能做的是找到一个教程,但它有一个搜索栏,当我搜索某些东西时它会显示给我,但我希望它自动显示给我并且没有搜索功能。

这可能吗?非常感谢任何帮助/教程。谢谢

最佳答案

您可以尝试使用 Place search api。 http://code.google.com/apis/maps/documentation/places/#PlaceSearches

他们支持“餐厅”和“食物”类型。 http://code.google.com/apis/maps/documentation/places/supported_types.html

因此您可以删除搜索栏,而是向 google places api 发送一个请求,其中包含当前位置和 types="restaurant"或 types="restaurant|food"。您可以获得 JSON 数据形式的结果,您可以在您的应用中轻松使用。

下一步是制作注释并将其添加到 map 中。

__
以下是第一部分的详细信息。
完成这项工作后,您可以继续获取 Google 地点的 API key ,获取当前位置,然后开始使用 map 注释将 json 结果添加到 map 。 :)
异步 url 连接是这里最大的部分。因此,一旦您完成这项工作,您就可以顺利找到附近的位置。

设置 JSON 部分..

  1. 下载一个 json 库.. https://github.com/johnezang/JSONKit

  2. 将 JSONKit.h 和 JSONKit.m 添加到您的项目中。 (添加文件..或将它们拖过来)

  3. 添加#import "JSONKit.h"(在您的 .m 文件中)

  4. 查看下面的最后一个方法,了解如何设置变量并从 json 获取数据。

对于url连接部分...
基于:http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html
PS:稍后您将进行更改以使用 google places json api-url、api-key、当前位置和“餐厅”类型(以从 google 获取所需的 json 响应)。
创建请求:

- (void)viewDidLoad
{
// Create the request.
NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.google.com/calendar/feeds/developer-calendar@google.com/public/full?alt=json"]

cachePolicy:NSURLRequestUseProtocolCachePolicy

timeoutInterval:60.0];

// create the connection with the request
// and start loading the data
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];

if (theConnection) {

// Create the NSMutableData to hold the received data.
receivedData = [[NSMutableData data] retain];

} else {

// Inform the user that the connection failed.

}
}

然后您需要实现委托(delegate)方法..(将其复制到 .m 文件中)当您收到响应(不是实际数据,因此他们会重置它)时调用此方法。

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response   
{

// This method is called when the server has determined that it
// has enough information to create the NSURLResponse.

// It can be called multiple times, for example in the case of a
// redirect, so each time we reset the data.
[receivedData setLength:0];

}

这个在接收到数据时调用 - 可能会发生多次,因此它们每次都会附加数据。

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{

// Append the new data to receivedData.
[receivedData appendData:data];

}

有时连接会失败,然后调用此委托(delegate)方法 - 您可以向用户显示一条消息(Apple 表示始终通知用户正在发生的事情)。

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{

// release the connection, and the data object
[connection release];
[receivedData release];

// inform the user
NSLog(@"Connection failed! Error - %@ %@",

[error localizedDescription],

[[error userInfo] objectForKey:NSURLErrorFailingURLStringErrorKey]);

}

最后,当连接成功完成时调用此方法。现在您有了完整的数据,并将其保存到一个变量中。这里我们也把数据放到jsonDict中。

- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{

// do something with the data ...

// Your data is now stored in "receivedData",
// set up this mutable variable in the header file, then synthesize.

// in the .h file, inside the @interface block.:
//
// NSMutableData *receivedData;
// NSDictionary *jsonDict;
// }
//
// @protocol (nonatomic, retain) NSMutableData *receivedData;
// @protocol (nonatomic, retain) NSDictionary *jsonDict;

// And in the .m file, under the @implementation line.
// @synthesize receivedData, jsonDict;

// Log to test your connection
NSLog(@"Succeeded! Received %d bytes of data",[receivedData length]);

// Place the received data into a json dictionary
jsonDict = [receivedData objectFromJSONData];

// Get sections from your data
NSString *feed = [jsonDict objectForKey:@"feed"]; // asumes there is only one title in your json data, otherwise you would use an array (with dictionary items) ..look in your feed to find what to use.

// Log your data
NSLog(@"My feed: %@", feed);


// release the connection, and the data object
[connection release];
[receivedData release];

}

尝试让它继续下去,然后我们可以重新使用地点搜索并将结果添加到 map 。

关于xcode - 如何使用我的位置自动查找附近的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7463340/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com