在我的应用中,我需要从当前位置找到附近的地点,并将这些地方导出到我的数据库。这就是全部。我将以下代码与Google Places API一起使用,然后我会在地图上看到我当前位置附近标记的位置。然后我想得到ID这些地方。我怎么能得到这个?
- (IBAction)pickPlace:(UIButton *)sender {
CLLocationCoordinate2D center = CLLocationCoordinate2DMake(51.5108396, -0.0922251);
CLLocationCoordinate2D northEast = CLLocationCoordinate2DMake(center.latitude + 0.001, center.longitude + 0.001);
CLLocationCoordinate2D southWest = CLLocationCoordinate2DMake(center.latitude - 0.001, center.longitude - 0.001);
GMSCoordinateBounds *viewport = [[GMSCoordinateBounds alloc] initWithCoordinate:northEast coordinate:southWest];}