GMSAutocompleteBoundsMode.h 701 Bytes
Newer Older
Julio Hermosa committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
//
//  GMSAutocompleteBoundsMode.h
//  Google Places SDK for iOS
//
//  Copyright 2017 Google Inc.
//
//  Usage of this SDK is subject to the Google Maps/Google Earth APIs Terms of
//  Service: https://developers.google.com/maps/terms
//

/**
 * \defgroup AutocompleteBoundsMode GMSAutocompleteBoundsMode
 * @{
 */

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

/**
 * Specifies how autocomplete should interpret the |bounds| parameters.
 */
typedef NS_ENUM(NSUInteger, GMSAutocompleteBoundsMode) {
  /** Interpret |bounds| as a bias. */
  kGMSAutocompleteBoundsModeBias,
  /** Interpret |bounds| as a restrict. */
  kGMSAutocompleteBoundsModeRestrict
};

NS_ASSUME_NONNULL_END

/**@}*/