1 // 2 // AIRGoogleMapWMSTile.h 3 // AirMaps 4 // 5 // Created by nizam on 10/28/18. 6 // Copyright © 2018. All rights reserved. 7 // 8 9 #ifdef HAVE_GOOGLE_MAPS 10 11 #import <Foundation/Foundation.h> 12 #import <GoogleMaps/GoogleMaps.h> 13 14 @interface WMSTileOverlay : GMSSyncTileLayer 15 @property (nonatomic) double MapX,MapY,FULL; 16 @property (nonatomic, strong) NSString *template; 17 @property (nonatomic, assign) NSInteger maximumZ; 18 @property (nonatomic, assign) NSInteger minimumZ; 19 @end 20 21 @interface AIRGoogleMapWMSTile : UIView 22 @property (nonatomic, strong) WMSTileOverlay *tileLayer; 23 @property (nonatomic, assign) NSString *urlTemplate; 24 @property (nonatomic, assign) int zIndex; 25 @property (nonatomic, assign) NSInteger maximumZ; 26 @property (nonatomic, assign) NSInteger minimumZ; 27 @property (nonatomic, assign) NSInteger tileSize; 28 @property (nonatomic, assign) float opacity; 29 @end 30 31 #endif 32 33 34