ArcGIS Runtime SDK for iOS: AGSPictureFillSymbol.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSPictureFillSymbol.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  //Required for Globals API doc
26 
27 #import <Foundation/Foundation.h>
28 #import <ArcGIS/AGSFillSymbol.h>
29 #import <ArcGIS/AGSLoadable.h>
30 #import <ArcGIS/AGSRemoteResource.h>
31 #import <ArcGIS/AGSImage.h>
32 
33 
34 
36 
43 
44 #pragma mark -
45 #pragma mark initializers
46 
52 -(instancetype)initWithImage:(AGSImage*)image;
53 
59 -(instancetype)initWithURL:(NSURL*)URL;
60 
67 +(instancetype)pictureFillSymbolWithImage:(AGSImage*)image;
68 
75 +(instancetype)pictureFillSymbolWithURL:(NSURL*)URL;
76 
77 #pragma mark -
78 #pragma mark properties
79 
83 @property (nullable, nonatomic, strong, readonly) AGSImage *image;
84 
88 @property (nonatomic, assign, readwrite) CGFloat height;
89 
93 @property (nonatomic, assign, readwrite) CGFloat width;
94 
99 @property (nonatomic, assign, readwrite) float opacity;
100 
104 @property (nonatomic, assign, readwrite) double angle;
105 
109 @property (nonatomic, assign, readwrite) double scaleX;
110 
114 @property (nonatomic, assign, readwrite) double scaleY;
115 
116 #pragma mark -
117 #pragma mark methods
118 
124 
125 @end
126 
127 
#define AGSImage
Definition: AGSImage.h:34
An abstract base class for fill symbols.
Definition: AGSFillSymbol.h:44
A multilayer polygon symbol.
Definition: AGSMultilayerPolygonSymbol.h:40
Uses an image to symbolize the fill for a polygon AGSGeoElement.
Definition: AGSPictureFillSymbol.h:42
CGFloat height
Definition: AGSPictureFillSymbol.h:88
float opacity
Definition: AGSPictureFillSymbol.h:99
AGSImage * image
Definition: AGSPictureFillSymbol.h:83
double angle
Definition: AGSPictureFillSymbol.h:104
AGSMultilayerPolygonSymbol * toMultilayerSymbol()
double scaleX
Definition: AGSPictureFillSymbol.h:109
double scaleY
Definition: AGSPictureFillSymbol.h:114
CGFloat width
Definition: AGSPictureFillSymbol.h:93
A protocol adopted by classes that can load data asynchronously.
Definition: AGSLoadable.h:72
A protocol adopted by classes that access remote network resources that have the potential to be secu...
Definition: AGSRemoteResource.h:40