ArcGIS Runtime SDK for iOS: AGSWMSLayerInfo.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSWMSLayerInfo.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 2022 ESRI
3 
4  All rights reserved under the copyright laws of the United States
5  and applicable international laws, treaties, and conventions.
6 
7  This material is licensed for use under the Esri Master License
8  Agreement (MLA), and is bound by the terms of that agreement.
9  You may redistribute and use this code without modification,
10  provided you adhere to the terms of the MLA and include this
11  copyright notice.
12 
13  See use restrictions at http://www.esri.com/legal/pdfs/mla_e204_e300/english
14 
15  For additional information, contact:
16  Environmental Systems Research Institute, Inc.
17  Attn: Contracts and Legal Services Department
18  380 New York Street
19  Redlands, California, 92373
20  USA
21 
22  email: contracts@esri.com
23  */
24 
25 #import <Foundation/Foundation.h>
26 #import <ArcGIS/AGSObject.h>
27 
28 @class AGSEnvelope;
29 @class AGSSpatialReference;
30 @class AGSWMSLayerInfo;
31  //Required for Globals API doc
33 
41 
42 
43 
44 #pragma mark -
45 #pragma mark initializers
46 
47 
48 
49 #pragma mark -
50 #pragma mark properties
51 
55 @property (nonatomic, copy, readonly) NSString *layerDescription;
56 
60 @property (nullable, nonatomic, strong, readonly) AGSEnvelope *extent;
61 
65 @property (nonatomic, assign, readonly) NSInteger fixedImageHeight;
66 
70 @property (nonatomic, assign, readonly) NSInteger fixedImageWidth;
71 
75 @property (nonatomic, copy, readonly) NSArray<NSString*> *keywords;
76 
80 @property (nonatomic, copy, readonly) NSString *name;
81 
85 @property (nonatomic, assign, readonly, getter=isOpaque) BOOL opaque;
86 
90 @property (nonatomic, assign, readonly, getter=isQueryable) BOOL queryable;
91 
95 @property (nonatomic, copy, readonly) NSArray<AGSSpatialReference*> *spatialReferences;
96 
100 @property (nonatomic, copy, readonly) NSArray<NSString*> *styles;
101 
105 @property (nonatomic, strong, readonly) NSMutableArray<AGSWMSLayerInfo*> *sublayerInfos;
106 
110 @property (nonatomic, copy, readonly) NSString *title;
111 
112 #pragma mark -
113 #pragma mark methods
114 
115 
116 
117 @end
118 
A geometry that represents a rectangular shape.
Definition: AGSEnvelope.h:55
Definition: AGSObject.h:28
Represents the spatial reference of a geometry.
Definition: AGSSpatialReference.h:49
Information about a layer in an OGC-WMS service.
Definition: AGSWMSLayerInfo.h:41
AGSEnvelope * extent
Definition: AGSWMSLayerInfo.h:60
NSArray< NSString * > * keywords
Definition: AGSWMSLayerInfo.h:75
NSInteger fixedImageHeight
Definition: AGSWMSLayerInfo.h:65
NSInteger fixedImageWidth
Definition: AGSWMSLayerInfo.h:70
NSString * layerDescription
Definition: AGSWMSLayerInfo.h:55
NSString * title
Definition: AGSWMSLayerInfo.h:110
NSString * name
Definition: AGSWMSLayerInfo.h:80
NSArray< AGSSpatialReference * > * spatialReferences
Definition: AGSWMSLayerInfo.h:95
BOOL opaque
Definition: AGSWMSLayerInfo.h:85
BOOL queryable
Definition: AGSWMSLayerInfo.h:90
NSMutableArray< AGSWMSLayerInfo * > * sublayerInfos
Definition: AGSWMSLayerInfo.h:105
NSArray< NSString * > * styles
Definition: AGSWMSLayerInfo.h:100