2

我正在尝试将 Google Places API 集成到我的 iOS 应用程序中。我指的是这个博客:http: //iphonebyradix.blogspot.com/2011/07/working-with-google-places-api.html

现在我正在查找我当前的 iPhone 位置,如何将我得到的经度和纬度嵌入到以下 URL 而不是 "location=34.0522222,-118.2427778" :

#define PlacesURL @"https://maps.googleapis.com/maps/api/place/search/xml?location=34.0522222,-118.2427778&radius=500&types=restaurants&sensor=false&key=Your_API_Key"

这样我就可以获得靠近我当前位置的餐厅位置,而不是靠近代码中给出的硬编码位置。

谢谢并恭祝安康。

4

1 回答 1

1
CLLocation *location = [[AppHelper appDelegate] mLatestLocation];//custom code to get latestPosition of user


NSString *url=[NSString stringWithFormat:@"https://maps.googleapis.com/maps/api/place/search/xml?location=%f,%f&radius=500&types=restaurants&sensor=false&key=Your_API_Key"
,location.coordinate.longitude,location.coordinate.latitude]];
于 2011-12-26T12:20:47.190 回答