Manual integration of RNN and RNM

This commit is contained in:
John Lyon-Smith
2018-03-27 13:37:05 -07:00
parent bef47656f5
commit 5952d62335
173 changed files with 4288 additions and 4577 deletions

View File

@@ -0,0 +1,83 @@
//
// GMSPanoramaService.h
// Google Maps SDK for iOS
//
// Copyright 2013 Google Inc.
//
// Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of
// Service: https://developers.google.com/maps/terms
//
#import <CoreLocation/CoreLocation.h>
#import "GMSPanoramaSource.h"
@class GMSPanorama;
NS_ASSUME_NONNULL_BEGIN;
/**
* Callback for when a panorama metadata becomes available.
* If an error occurred, |panorama| is nil and |error| is not nil.
* Otherwise, |panorama| is not nil and |error| is nil.
*
* @related GMSPanoramaService
*/
typedef void (^GMSPanoramaCallback)(GMSPanorama *_Nullable panorama, NSError *_Nullable error);
/**
* GMSPanoramaService can be used to request panorama metadata even when a GMSPanoramaView is not
* active.
*
* Get an instance like this: [[GMSPanoramaService alloc] init].
*/
@interface GMSPanoramaService : NSObject
/**
* Retrieves information about a panorama near the given |coordinate|.
*
* This is an asynchronous request, |callback| will be called with the result.
*/
- (void)requestPanoramaNearCoordinate:(CLLocationCoordinate2D)coordinate
callback:(GMSPanoramaCallback)callback;
/**
* Similar to requestPanoramaNearCoordinate:callback: but allows specifying a search radius (meters)
* around |coordinate|.
*/
- (void)requestPanoramaNearCoordinate:(CLLocationCoordinate2D)coordinate
radius:(NSUInteger)radius
callback:(GMSPanoramaCallback)callback;
/**
* Similar to requestPanoramaNearCoordinate:callback: but allows specifying the panorama source type
* near the given |coordinate|.
*
* This API is experimental and may not always filter by source.
*/
- (void)requestPanoramaNearCoordinate:(CLLocationCoordinate2D)coordinate
source:(GMSPanoramaSource)source
callback:(GMSPanoramaCallback)callback;
/**
* Similar to requestPanoramaNearCoordinate:callback: but allows specifying a search radius (meters)
* and the panorama source type near the given |coordinate|.
*
* This API is experimental and may not always filter by source.
*/
- (void)requestPanoramaNearCoordinate:(CLLocationCoordinate2D)coordinate
radius:(NSUInteger)radius
source:(GMSPanoramaSource)source
callback:(GMSPanoramaCallback)callback;
/**
* Retrieves information about a panorama with the given |panoramaID|.
*
* |callback| will be called with the result. Only panoramaIDs obtained from the Google Maps SDK for
* iOS are supported.
*/
- (void)requestPanoramaWithID:(NSString *)panoramaID callback:(GMSPanoramaCallback)callback;
@end
NS_ASSUME_NONNULL_END;