16 lines
343 B
Objective-C
16 lines
343 B
Objective-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
|