NMSGroundOverlay.h
1 //
2 // NMSGroundOverlay.h
3 // NavionicsMobileSDK
4 //
5 // Copyright © 2016 Navionics. All rights reserved.
6 //
7 
8 #import "NMSOverlay.h"
9 #import <UIKit/UIKit.h>
10 #import "NMSCoordinateBounds.h"
11 
14 
21 + (instancetype) groundOverlayWithBounds:(NMSCoordinateBounds*)bounds image:(UIImage*)image;
22 
24 @property(nonatomic, copy)NMSCoordinateBounds* bounds;
25 
27 @property(nonatomic, retain)UIImage* image;
28 
30 @property(nonatomic, assign) CLLocationDirection bearing;
31 
33 @property(nonatomic, assign) CGPoint anchor;
34 
36 @property(nonatomic, assign)CGFloat opacity;
37 
38 @end
UIImage * image
Image to render within bounds on the Earth.
CGFloat opacity
Sets the opacity of the ground overlay, between 0 (completely transparent) and 1 (default) inclusive...
An image overlay on the Earth&#39;s surface.
CLLocationDirection bearing
Bearing of this ground overlay, in degrees.
CGPoint anchor
The anchor specifies where this NMSGroundOverlay is anchored to the Earth in relation to bounds...
Abstract class that represents some overlay that may be attached to a specific NMSMapView.
Definition: NMSOverlay.h:12
Rectangular bounding box on the Earth&#39;s surface.