Tencent_Panorama_SDK_v1.1.3
QPanoramaService.h
1 //
2 // QPanoramaService.h
3 // QPanoramaKit_Debug
4 //
5 // Created by xfang on 15/3/11.
6 // Copyright (c) 2015年 tencent. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import <CoreLocation/CoreLocation.h>
11 
12 
13 @class QPanorama;
14 
15 typedef void (^QPanoramaCallback)(QPanorama *panorama, NSError *error);
16 
17 
23 @interface QPanoramaService : NSObject
24 
31 - (void)requestPanoramaNearCoordinate:(CLLocationCoordinate2D)coordinate
32  callback:(QPanoramaCallback)callback;
33 
41 - (void)requestPanoramaNearCoordinate:(CLLocationCoordinate2D)coordinate
42  radius:(NSUInteger)radius
43  callback:(QPanoramaCallback)callback;
44 
51 - (void)requestPanoramaWithID:(NSString *)panoramaID
52  callback:(QPanoramaCallback)callback;
53 
54 @end
55 
区别于 QPanoServices 用于提供街景数据接口
Definition: QPanoramaService.h:23
该类封装了街景场景相关属性
Definition: QPanorama.h:14