アプリケーションで Apple マップの代わりに GOOGLE MAP SDK for ios を使用しました。近くのレストランを見つけるために Google API 呼び出しを実行しましたが、Google MAP SDK for ios で Google API を使用する方法については言及されていません。ここに私のコードがあります。
-(void)loadView {
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:11.0183
longitude:76.9725
zoom:15];
mapView_ = [GMSMapView mapWithFrame:CGRectZero camera:camera];
mapView_.myLocationEnabled = YES;
mapView_.delegate = self;
self.view = mapView_;
mapView_.mapType = kGMSTypeSatellite;
}
Google API を使用して近くの復帰者を見つけるには、どこを使用すればよいですか?
NSString *url = [NSString stringWithFormat:@"https://maps.googleapis.com/maps/api/place/search/json?location=%@,%@&radius=%@&types=%@&sensor=false&key=%@",StrCurrentLatitude ,StrCurrentLongitude,@"2000",@"restaurant",kGOOGLE_API_KEY];
解決するのを手伝ってください!