アプリケーションで Google プレイス API を使用しています。まあ、それはうまく機能し、いくつかの場所で応答を返します。しかし、いくつかの場所では、「ゼロの結果」が得られます。
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://maps.googleapis./maps/api/place/search/json?location=%f,%f&radius=5000&types=&name=%@&sensor=false&key=fgewffefewweweewfe",mapView.centerCoordinate.latitude,mapView.centerCoordinate.longitude,searchPlace.text]];
NSURLRequest *request = [[NSURLRequest alloc]initWithURL:url];
NSURLConnection *connect= [[NSURLConnection alloc]initWithRequest:request delegate:self];
誰かが私が間違っている場所を教えてもらえますか?