0

Google Maps SDK for iOS バージョン 1.4.0.4450 を使用して、特定の場所の iOS アプリから Google ストリート ビューを表示しています。ストリートビューがあれば問題なく使えます。

私の質問は、ストリートビューが利用できない場合、それを確認する方法は?

クラス GMSPanoramaService があります。public メンバー メソッドが含まれています。これは便利だと思います。- requestPanoramaNearCoordinate:callback: 指定された座標付近のパノラマに関する情報を取得します。

しかし、それをどのように使用するのですか?

前もって感謝します!

4

1 に答える 1

-1

あなたはこの失礼な方法を使うかもしれません

-(void)isStreetViewAvailable:(CLLocationCoordinate2D)location completionBlock:    (NWisStreetViewCompletionBlock)completionBlock
 {
 NSString *loc = [NSString stringWithFormat:@"%.10f,%.10f&", location.latitude, location.longitude];
 NWisStreetViewCompletionBlock completeBlock = [completionBlock copy];


 NSString *connectionString = [NSString stringWithFormat:@"http://cbk0.google.com/cbk?output=json&ll=%@", loc];
 NSLog(@"connect to: %@",connectionString);

NSURL *url = [NSURL URLWithString:connectionString];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
AFJSONRequestOperation *operation;
operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON) {
    //NSLog(@"%@", JSON);

    NSLog(@"%@", JSON);

    if([JSON objectForKey:@"Location"] == nil)
        completeBlock(@"", nil);

    //NSLog(@"panoId: %@",[[json objectForKey:@"Location"] objectForKey:@"panoId"]);

    completeBlock([[JSON objectForKey:@"Location"] objectForKey:@"panoId"], nil);



} failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON) {

    NSMutableDictionary* details = [NSMutableDictionary dictionary];
    [details setValue:[error description] forKey:NSLocalizedDescriptionKey];
    // populate the error object with the details
    NSError *err = [NSError errorWithDomain:@"world" code:200 userInfo:details];

    completeBlock(NO, err);
}];

[operation start];



}
于 2013-07-22T12:53:15.213 に答える