ArcGIS Runtime SDK for iOS: AGSImageServiceRaster.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSImageServiceRaster.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/AGSRaster.h>
20 #import <ArcGIS/AGSRemoteResource.h>
21 
22 @class AGSRenderingRule;
24 @class AGSMosaicRule;
25 
36 
37 
38 
39 #pragma mark -
40 #pragma mark initializers
41 
42 
43 
49 -(instancetype)initWithURL:(NSURL*)URL;
50 
56 +(instancetype)imageServiceRasterWithURL:(NSURL*)URL;
57 
58 #pragma mark -
59 #pragma mark properties
60 
64 @property (nullable, nonatomic, strong, readwrite) AGSMosaicRule *mosaicRule;
65 
69 @property (nullable, nonatomic, strong, readwrite) AGSRenderingRule *renderingRule;
70 
71 
75 @property (nullable, nonatomic, strong, readonly) AGSArcGISImageServiceInfo *serviceInfo;
76 
77 #pragma mark -
78 #pragma mark methods
79 
80 
81 
82 @end
Metadata of an ArcGIS Image Service.
Definition: AGSArcGISImageServiceInfo.h:57
AGSRenderingRule * renderingRule
Definition: AGSImageServiceRaster.h:69
AGSMosaicRule * mosaicRule
Definition: AGSImageServiceRaster.h:64
A raster dataset.
Definition: AGSRaster.h:60
A rule determining how a requested image should participate in the mosaic.
Definition: AGSMosaicRule.h:66
A raster dataset based on an ArcGIS Image Service.
Definition: AGSImageServiceRaster.h:35
A protocol adopted by classes that access remote network resources that have the potential to be secu...
Definition: AGSRemoteResource.h:34
AGSArcGISImageServiceInfo * serviceInfo
Definition: AGSImageServiceRaster.h:75
A rendering rule to apply to an AGSImageServiceRaster.
Definition: AGSRenderingRule.h:30