ArcGIS Runtime SDK for iOS: AGSPictureMarkerSymbol.h Source File
ArcGIS Runtime SDK for iOS  100.15
AGSPictureMarkerSymbol.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/AGSMarkerSymbol.h>
29 #import <ArcGIS/AGSLoadable.h>
30 #import <ArcGIS/AGSRemoteResource.h>
31 #import <ArcGIS/AGSImage.h>
32 
34 
35 
36 
47 
48 #pragma mark -
49 #pragma mark initializers
50 
51 
52 
58 -(instancetype)initWithImage:(AGSImage*)image;
59 
65 -(instancetype)initWithURL:(NSURL*)URL;
66 
73 +(instancetype)pictureMarkerSymbolWithImage:(AGSImage*)image;
74 
81 +(instancetype)pictureMarkerSymbolWithURL:(NSURL*)URL;
82 
83 
84 #pragma mark -
85 #pragma mark properties
86 
90 @property (nullable, nonatomic, strong, readonly) AGSImage *image;
91 
95 @property (nonatomic, assign, readwrite) CGFloat height;
96 
100 @property (nonatomic, assign, readwrite) CGFloat width;
101 
106 @property (nonatomic, assign, readwrite) float opacity;
107 
108 #pragma mark -
109 #pragma mark methods
110 
116 
117 @end
118 
119 
#define AGSImage
Definition: AGSImage.h:34
An abstract base class for marker symbols.
Definition: AGSMarkerSymbol.h:89
A multilayer point symbol.
Definition: AGSMultilayerPointSymbol.h:40
Uses an image to symbolize AGSGeomElement that has AGSPoint or AGSMultipoint geometry.
Definition: AGSPictureMarkerSymbol.h:46
CGFloat width
Definition: AGSPictureMarkerSymbol.h:100
CGFloat height
Definition: AGSPictureMarkerSymbol.h:95
AGSMultilayerPointSymbol * toMultilayerSymbol()
AGSImage * image
Definition: AGSPictureMarkerSymbol.h:90
float opacity
Definition: AGSPictureMarkerSymbol.h:106
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