1 // 2 // AIRGoogleMapURLTile.h 3 // Created by Nick Italiano on 11/5/16. 4 // 5 6 #ifdef HAVE_GOOGLE_MAPS 7 8 #import <Foundation/Foundation.h> 9 #import <GoogleMaps/GoogleMaps.h> 10 11 @interface AIRGoogleMapUrlTile : UIView 12 13 @property (nonatomic, strong) GMSURLTileLayer *tileLayer; 14 @property (nonatomic, assign) NSString *urlTemplate; 15 @property (nonatomic, assign) int zIndex; 16 @property NSInteger *maximumZ; 17 @property NSInteger *minimumZ; 18 @property BOOL flipY; 19 20 @end 21 22 #endif 23