| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // 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 <GoogleMapsBase/GoogleMapsBase.h>
- #endif
- #import <GoogleMaps/GMSProjection.h>
- @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
|