// // GMSCoordinateBounds+GoogleMaps.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 // #if __has_feature(modules) @import GoogleMapsBase; #else #import #endif #import @class GMSPath; GMS_ASSUME_NONNULL_BEGIN @interface GMSCoordinateBounds (GoogleMaps) /** * Inits with bounds that encompass |region|. */ - (id)initWithRegion:(GMSVisibleRegion)region; /** * Inits with bounds that encompass |path|. */ - (id)initWithPath:(GMSPath *)path; /** * Returns a GMSCoordinateBounds representing the current bounds extended to * include |path|. */ - (GMSCoordinateBounds *)includingPath:(GMSPath *)path; @end GMS_ASSUME_NONNULL_END