NMSOverlay.h
1 //
2 // NMSOverlay.h
3 // NavionicsMobileSDK
4 //
5 // Copyright © 2016 Navionics. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 @class NMSMapView;
10 
12 @interface NMSOverlay : NSObject
13 
15 @property(nonatomic, retain)NSString* title;
16 
18 @property(nonatomic, assign)NSUInteger zIndex;
19 
21 @property(nonatomic, assign)NMSMapView* map;
22 
23 @end
NMSMapView * map
The map this overlay is on.
Definition: NMSOverlay.h:21
NSUInteger zIndex
Higher zIndex value overlays will be drawn on top of lower zIndex value tile layers and overlays...
Definition: NMSOverlay.h:18
View that contains the map. Only one map view can be active at any given time.
Definition: NMSMapView.h:23
NSString * title
Title, a short description of the overlay.
Definition: NMSOverlay.h:15
Abstract class that represents some overlay that may be attached to a specific NMSMapView.
Definition: NMSOverlay.h:12