ArcGIS Runtime SDK for iOS: AGSBackgroundGrid.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSBackgroundGrid.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 1995-2020 ESRI
3 
4  TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
5  Unpublished material - all rights reserved under the
6  Copyright Laws of the United States and applicable international
7  laws, treaties, and conventions.
8 
9  For additional information, contact:
10  Environmental Systems Research Institute, Inc.
11  Attn: Contracts and Legal Services Department
12  380 New York Street
13  Redlands, California, 92373
14  USA
15 
16  email: contracts@esri.com
17  */
18 
19 #import <ArcGIS/AGSObject.h>
20 #import <ArcGIS/AGSColor.h>
21  //Required for Globals API doc
23 
32 
33 
34 #pragma mark -
35 #pragma mark initializers
36 
45 -(instancetype)initWithColor:(AGSColor*)color
46  gridLineColor:(AGSColor*)gridLineColor
47  gridLineWidth:(double)gridLineWidth
48  gridSize:(double)gridSize;
49 
58 +(instancetype)backgroundGridWithColor:(AGSColor*)color
59  gridLineColor:(AGSColor*)gridLineColor
60  gridLineWidth:(double)gridLineWidth
61  gridSize:(double)gridSize;
62 #pragma mark -
63 #pragma mark properties
64 
69 @property (nonatomic, strong, readwrite) AGSColor *color;
70 
75 @property (nonatomic, strong, readwrite) AGSColor *gridLineColor;
76 
82 @property (nonatomic, assign, readwrite) double gridLineWidth;
83 
88 @property (nonatomic, assign, readwrite) double gridSize;
89 
96 @property (nonatomic, assign, readwrite, getter=isVisible) BOOL visible;
97 
98 #pragma mark -
99 #pragma mark methods
100 
101 
102 @end
double gridLineWidth
Definition: AGSBackgroundGrid.h:82
A background grid defines the default color and context grid for display behind a map or scene surfac...
Definition: AGSBackgroundGrid.h:31
AGSColor * gridLineColor
Definition: AGSBackgroundGrid.h:75
BOOL visible
Definition: AGSBackgroundGrid.h:96
AGSColor * color
Definition: AGSBackgroundGrid.h:69
double gridSize
Definition: AGSBackgroundGrid.h:88
Definition: AGSObject.h:21