我对xcode非常新,但我想要完成的是当你打开应用程序时,它会显示一张地图,我的位置以及我周围的当前美食地点。我没有自己的数据库我想尝试使用谷歌这个功能的位置。我能做的是找到一个教程,但它有一个搜索栏,当我搜索它给我看的东西,但我想让它自动显示我,而不是具有搜索功能。
这可能吗?任何帮助/教程非常感谢。谢谢
答案 0 :(得分:5)
您可以尝试使用Place search api。 http://code.google.com/apis/maps/documentation/places/#PlaceSearches
他们支持“餐馆”和“食物”类型。 http://code.google.com/apis/maps/documentation/places/supported_types.html
因此,您可以删除搜索栏,而是向Google地方api发送请求,其中包含当前位置和类型=“restaurant”或types =“restaurant | food”。 您可以将结果作为JSON数据获得,您可以在应用中轻松使用。
下一步是制作注释并将它们添加到地图中。
__
以下是第一部分的详细信息
一旦你开始工作,你可以继续获得谷歌地方的 API密钥,获取当前位置,然后使用地图注释开始将json结果添加到地图中。 :)
异步URL连接是这里最重要的部分。因此,一旦你开始工作,你就可以找到附近的地点了。
设置JSON部分..
下载json库.. https://github.com/johnezang/JSONKit
将JSONKit.h和JSONKit.m添加到您的项目中。 (添加文件..或拖动它们)
添加#import“JSONKit.h”(在您的.m文件中)
查看下面的最终方法,了解如何设置变量并从json获取数据。
对于网址连接部分...
基于:http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/URLLoadingSystem/Tasks/UsingNSURLConnection.html
PS:您稍后会进行更改以使用google places json api-url,api-key,当前位置和“餐馆”类型(从谷歌获取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.
}
}
然后你需要实现委托方法..(将其复制到.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];
}
有时连接会失败,然后调用这个委托方法 - 你可以向用户显示一条消息(苹果说总是告诉用户发生了什么)..
- (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];
}
尝试实现这一目标,然后我们可以回到使用地方搜索并将结果添加到地图。
答案 1 :(得分:1)
请参阅以下链接 http://www.raywenderlich.com/13160/using-the-google-places-api-with-mapkit
该链接显示了map API项目的临时开发