-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from poulpix/1.3
Pull request for V1.3 to master
- Loading branch information
Showing
267 changed files
with
1,884 additions
and
2,077 deletions.
There are no files selected for viewing
Binary file modified
BIN
-48.8 MB
(33%)
Dependencies/GoogleMaps.framework/Versions/A/GoogleMaps
100644 → 100755
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
62 changes: 0 additions & 62 deletions
62
Dependencies/GoogleMaps.framework/Versions/A/Headers/GMSAutocompleteFilter.h
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
Dependencies/GoogleMaps.framework/Versions/A/Headers/GMSAutocompleteMatchFragment.h
This file was deleted.
Oops, something went wrong.
59 changes: 0 additions & 59 deletions
59
Dependencies/GoogleMaps.framework/Versions/A/Headers/GMSAutocompletePrediction.h
This file was deleted.
Oops, something went wrong.
Empty file modified
0
Dependencies/GoogleMaps.framework/Versions/A/Headers/GMSCALayer.h
100644 → 100755
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
Dependencies/GoogleMaps.framework/Versions/A/Headers/GMSCoordinateBounds+GoogleMaps.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// | ||
// 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 |
Oops, something went wrong.