ArcGIS Runtime SDK for iOS: AGSVectorTileSourceInfo.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSVectorTileSourceInfo.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 AGSVectorTileStyle;
29 @class AGSEnvelope;
30 @class AGSPoint;
31 @class AGSSpatialReference;
32 @class AGSLevelOfDetail;
33  //Required for Globals API doc
35 
44 
45 
46 #pragma mark -
47 #pragma mark initializers
48 
49 
50 
51 #pragma mark -
52 #pragma mark properties
53 
57 @property (nullable, nonatomic, strong, readonly) NSURL *URL;
58 
62 @property (nullable, nonatomic, strong, readonly) NSURL *defaultStyleURL;
63 
67 @property (nullable, nonatomic, strong, readonly) AGSVectorTileStyle *defaultStyle;
68 
72 @property (nonatomic, assign, readonly) BOOL exportTilesAllowed;
73 
77 @property (nullable, nonatomic, strong, readonly) AGSEnvelope *fullExtent;
78 
82 @property (nullable, nonatomic, strong, readonly) AGSEnvelope *initialExtent;
83 
87 @property (nonatomic, copy, readonly) NSArray<AGSLevelOfDetail*> *levelsOfDetail;
88 
92 @property (nonatomic, assign, readonly) NSInteger maxExportTilesCount;
93 
97 @property (nonatomic, assign, readonly) double maxScale;
98 
102 @property (nonatomic, assign, readonly) double minScale;
103 
107 @property (nonatomic, copy, readonly) NSString *name;
108 
112 @property (nullable, nonatomic, strong, readonly) AGSPoint *origin;
113 
117 @property (nullable, nonatomic, strong, readonly) AGSSpatialReference *spatialReference;
118 
122 @property (nonatomic, copy, readonly) NSString *version;
123 
124 #pragma mark -
125 #pragma mark methods
126 
127 
128 @end
129 
A geometry that represents a rectangular shape.
Definition: AGSEnvelope.h:55
A scale level in a tiling scheme.
Definition: AGSLevelOfDetail.h:38
Definition: AGSObject.h:28
A location defined by x and y (and optionally z) coordinates.
Definition: AGSPoint.h:73
Represents the spatial reference of a geometry.
Definition: AGSSpatialReference.h:49
Metadata about a source of vector tiles.
Definition: AGSVectorTileSourceInfo.h:44
NSString * name
Definition: AGSVectorTileSourceInfo.h:107
AGSPoint * origin
Definition: AGSVectorTileSourceInfo.h:112
double maxScale
Definition: AGSVectorTileSourceInfo.h:97
AGSEnvelope * initialExtent
Definition: AGSVectorTileSourceInfo.h:82
NSString * version
Definition: AGSVectorTileSourceInfo.h:122
double minScale
Definition: AGSVectorTileSourceInfo.h:102
AGSVectorTileStyle * defaultStyle
Definition: AGSVectorTileSourceInfo.h:67
AGSEnvelope * fullExtent
Definition: AGSVectorTileSourceInfo.h:77
NSURL * defaultStyleURL
Definition: AGSVectorTileSourceInfo.h:62
NSURL * URL
Definition: AGSVectorTileSourceInfo.h:57
BOOL exportTilesAllowed
Definition: AGSVectorTileSourceInfo.h:72
NSInteger maxExportTilesCount
Definition: AGSVectorTileSourceInfo.h:92
NSArray< AGSLevelOfDetail * > * levelsOfDetail
Definition: AGSVectorTileSourceInfo.h:87
AGSSpatialReference * spatialReference
Definition: AGSVectorTileSourceInfo.h:117
Style information for a source of vector tiles.
Definition: AGSVectorTileStyle.h:38