将Google Maps Data API与iPhone集成并执行搜索

时间:2010-08-02 07:47:26

标签: iphone objective-c google-maps

是否有人使用iPhone应用程序集成了Google的Maps Data API here。如果是这样,请分享骨架代码以便在我的应用程序中抢占先机?

我想使用Google Maps Data API搜索附近的某些地方(例如公园,剧院等用户信息)。

4 个答案:

答案 0 :(得分:13)

我刚刚发布了一些简单的iOS类,这些类使用Google的Local Search API通过名称或地址搜索获取地图区域中位置的位置信息。有detailed instructions herethe GitHub repository is here

希望这些信息可以让新开发人员轻松地在iPhone应用中使用Google Local API获取纬度和广度。经度和经营其他地方。

答案 1 :(得分:5)

我怀疑这段代码就是你所追求的。

NSString *url =[[NSString alloc] initWithFormat:@"http://ajax.googleapis.com/ajax/services/search/local?v=1.0&q='%@'&sll=%f,%f&rsz=large&start=0",query, location.latitude, location.longitude];

您可能还想查看 https://github.com/twoism/gkit

答案 2 :(得分:2)

按照these steps建立图书馆...其余部分非常简单......然后read this

答案 3 :(得分:0)

Maps Data API不会执行您想要执行的操作 - 搜索附近的兴趣点,而不是搜索地理数据的方法。

您可能希望查看Google AJAX Search API的本地搜索功能。 This section讨论如何将其用作网络服务,您可以从iPhone应用程序访问该服务。