16 lines
343 B
C
16 lines
343 B
C
|
//
|
||
|
// AIRGoogleMapURLTile.h
|
||
|
// Created by Nick Italiano on 11/5/16.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
#import <GoogleMaps/GoogleMaps.h>
|
||
|
|
||
|
@interface AIRGoogleMapUrlTile : UIView
|
||
|
|
||
|
@property (nonatomic, strong) GMSURLTileLayer *tileLayer;
|
||
|
@property (nonatomic, assign) NSString *urlTemplate;
|
||
|
@property (nonatomic, assign) int zIndex;
|
||
|
|
||
|
@end
|