ArcGIS Runtime SDK for iOS
100.15
|
Uses an image to symbolize AGSGeomElement
that has AGSPoint
or AGSMultipoint
geometry.
Instances of this class represent picture marker symbols. Symbols describe how graphics and features look on a map. Different symbols are used with different geometry types. Marker symbols are used to display those graphics and features which are based on point or multipoint geometries. Supported image formats are BMP, GIF, ICO, JPEG, and PNG. Animated GIF is not supported.
Instance Methods | |
(void) | - cancelLoad |
(id< AGSCancelable >) | - createSwatchWithBackgroundColor:screen:completion: |
(id< AGSCancelable >) | - createSwatchWithCompletion: |
(id< AGSCancelable >) | - createSwatchWithGeometry:width:height:screen:backgroundColor:completion: |
(nullable id< AGSCancelable >) | - createSwatchWithWidth:height:screen:backgroundColor:completion: |
(instancetype) | - initWithImage: |
(instancetype) | - initWithURL: |
(BOOL) | - isEqualToSymbol: |
(void) | - loadWithCompletion: |
(void) | - retryLoadWithCompletion: |
(nullable id) | - toJSON: |
(AGSMultilayerPointSymbol *) | - toMultilayerSymbol |
Class Methods | |
(nullable id< AGSJSONSerializable >) | + fromJSON:error: |
(instancetype) | + pictureMarkerSymbolWithImage: |
(instancetype) | + pictureMarkerSymbolWithURL: |
Properties | |
AGSSymbolRotationType rotationType | __deprecated |
float | angle |
AGSSymbolAngleAlignment | angleAlignment |
AGSCredential * | credential |
CGFloat | height |
AGSImage * | image |
CGFloat | leaderOffsetX |
CGFloat | leaderOffsetY |
NSError * | loadError |
AGSLoadStatus | loadStatus |
CGFloat | offsetX |
CGFloat | offsetY |
float | opacity |
AGSRequestConfiguration * | requestConfiguration |
NSDictionary< NSString *, id > * | unknownJSON |
NSDictionary< NSString *, id > * | unsupportedJSON |
NSURL * | URL |
CGFloat | width |
|
requiredinherited |
Cancels loading if it is in progress, otherwise it does nothing. This should be called carefully because other objects could be waiting for loadWithCompletion:
or retryLoadWithCompletion:
to complete and this will call them all back with the error of NSUserCancelledError
- (id<AGSCancelable>) createSwatchWithBackgroundColor: | (nullable AGSColor *) | backgroundColor | |
screen: | (nullable AGSScreen *) | screen | |
completion: | (void(^)(AGSImage *__nullable swatch, NSError *__nullable error)) | completion | |
Creates swatch with provided background color.
backgroundColor | Desired background color of the image. |
screen | Screen that the swatch will be rendered for. If you specify nil then the main screen will be used. |
completion | A block that is invoked when the operation completes. |
- (id<AGSCancelable>) createSwatchWithCompletion: | (void(^)(AGSImage *__nullable swatch, NSError *__nullable error)) | completion |
Creates a swatch with a clear background color. This method uses main screen's scale to determine the size of the image.
completion | block that is invoked when operation completes. |
- (id<AGSCancelable>) createSwatchWithGeometry: | (AGSGeometry *) | geometry | |
width: | (NSInteger) | width | |
height: | (NSInteger) | height | |
screen: | (nullable AGSScreen *) | screen | |
backgroundColor: | (nullable AGSColor *) | backgroundColor | |
completion: | (void(^)(AGSImage *__nullable swatch, NSError *__nullable error)) | completion | |
Creates a swatch using the provided geometry and other parameters. This is the most configurable of the methods to create swatches. You can pass the pixels per inch that you would like the image to be rendered at. This will determine how many pixels are used to render symbols of sizes that are specified in points.
geometry | The geometry of the symbol to be drawn in the swatch image. The specified geometry is in DIPs, with the point {0,0} located at the center of the swatch image. The X-axis increases towards the right side of the swatch image. The Y-axis increases towards the top of the swatch image. For example: when creating a swatch for an AGSMarkerSymbol , specifying a geometry of {10,10} will draw the marker 10 DIPs up and to the right of the center of the swatch. The geometry type (AGSPoint , AGSPolyline , AGSPolygon ) should correspond to the symbol type (AGSMarkerSymbol , AGSLineSymbol , AGSFillSymbol ). The geometry's spatial reference is ignored. |
width | Desired width of the image in pixels. |
height | Desired height of the image in pixels. |
screen | The screen that the swatch will be rendered for. If you specify nil then the main screen will be used. |
backgroundColor | The desired background color of the image. |
completion | A block that is invoked when operation completes. |
- (nullable id<AGSCancelable>) createSwatchWithWidth: | (NSInteger) | width | |
height: | (NSInteger) | height | |
screen: | (nullable AGSScreen *) | screen | |
backgroundColor: | (nullable AGSColor *) | backgroundColor | |
completion: | (void(^)(AGSImage *__nullable swatch, NSError *__nullable error)) | completion | |
|
staticrequiredinherited |
Initializes and returns an object from its JSON representation.
JSONObject | NSDictionary or NSArray containing the JSON. |
error | encountered during the operation, if any. |
- (instancetype) initWithImage: | (AGSImage *) | image |
Initializes a picture marker symbol with the provided image. Supported image formats are BMP, GIF, ICO, JPEG, and PNG. Animated GIF is not supported.
image | to use with the symbol. |
- (instancetype) initWithURL: | (NSURL *) | URL |
Initializes a picture marker symbol with the provided URL to an image. Supported image formats are BMP, GIF, ICO, JPEG, and PNG. Animated GIF is not supported.
URL | to an image. |
- (BOOL) isEqualToSymbol: | (AGSSymbol *) | other |
Compares this symbol to another for equality.
other | The other symbol to compare this one to. |
YES
if the two symbols are equal, otherwise NO
.
|
requiredinherited |
Loads data for the object asynchronously. The completion block is invoked upon completion.
You can call this method any number of times, however only one attempt is made to load the data. If it is already loading, it will just continue to load (i.e. not force a reload). If it has already loaded successfully, the completion block will be invoked right away. If it has already failed to load, the completion block will be invoked right away with error previously encountered. This method supports multiple callers and will call them all back on completion. However, each caller's completion block will be invoked once and only once.
completion | block that is invoked when object loads successfully or fails to load. An error is passed to the block if the object fails to load. |
- cancelLoad
to cancel loading - retryLoadWithCompletion:
to force reload + (instancetype) pictureMarkerSymbolWithImage: | (AGSImage *) | image |
Creates a picture marker symbol with the provided image. Supported image formats are BMP, GIF, ICO, JPEG, and PNG. Animated GIF is not supported.
image | to use with the symbol. |
+ (instancetype) pictureMarkerSymbolWithURL: | (NSURL *) | URL |
Creates a picture marker symbol with the provided URL to an image. Supported image formats are BMP, GIF, ICO, JPEG, and PNG. Animated GIF is not supported.
URL | to an image. |
|
requiredinherited |
Tries to reload when an object has failed to load. This method should be called judiciously. It should be called when:
cancelLoad
and then this methodIf the data hasn't started loading, it will start loading. If it is already loading, it will just continue to load. If it has already loaded successfully, calls back right away. If it has already failed to load, tries again. This method supports multiple callers and will call them all back on completion. However, each caller's completion block will be invoked once and only once.
completion | block that is invoked when object loads successfully or fails to load. An error is passed to the block if the object fails to load. |
|
requiredinherited |
Returns JSON representation for this object.
error | encountered during the operation, if any. |
NSDictionary
or NSArray
containing the JSON. Reimplemented in AGSPortalItem.
- (AGSMultilayerPointSymbol *) toMultilayerSymbol |
Gets the multilayer point symbol generated from picture marker symbol.
AGSMultilayerPointSymbol
object.
|
readwritenonatomicassigninherited |
The rotation type of the marker symbol.
The default value is AGSSymbolRotationTypeArithmetic
. This property is deprecated in release 100.5.
angle
property. Provided by category AGSMarkerSymbol(AGSDeprecated).
|
readwritenonatomicassigninherited |
The angle (in degrees) of the marker symbol.
|
readwritenonatomicassigninherited |
Specifies whether the symbol should rotate with the map/scene or stay at the same angle with regards to the screen. Default is AGSSymbolAngleAlignmentScreen
which keeps it aligned with the screen. Only supported for graphics overlays when AGSGraphicsOverlay::renderingMode
is AGSGraphicsRenderingModeDynamic
, and for feature layers when AGSFeatureLayer::renderingMode
is AGSFeatureRenderingModeDynamic
|
readwritenonatomicstronginherited |
Security credentials to access the remote resource. Only applicable if the resource is secured.
|
readwritenonatomicassign |
The height (in points, not pixels) of the symbol. Defaults to size of the image.
|
readnonatomicstrong |
The image being used by the picture marker symbol. May be nil
until loadStatus
is AGSLoadStatusLoaded
.
|
readwritenonatomicassigninherited |
Specifies how to position a callout's leader in relation to the symbol (for example, when a user taps on the map to display a callout for the feature or graphic). Default value is 0 and the callout's leader is positioned at the horizontal center of the symbol. The values specified here are interpreted in a cartesian coordinate system and in points (not pixels). Thus, a value of -5 will offset the callout's leader left on the x-axis by 5 points
|
readwritenonatomicassigninherited |
Specifies how to position a callout's leader in relation to the symbol (for example, when a user taps on the map to display a callout for the feature or graphic). Default value is 0 and the callout's leader is positioned at the vertical center of the symbol. The values specified here are interpreted in a cartesian coordinate system and in points (not pixels). Thus, a value of -5 will offset the callout's leader down on the y-axis by 5 points
|
readnonatomicstronginherited |
The error that was encountered during the most recent load operation. Will be nil if the operation succeeded.
|
readrequirednonatomicassigninherited |
Status of the load operation.
|
readwritenonatomicassigninherited |
Specifies how to position the symbol in relation to the graphic or feature's point geometry. This is useful when the marker needs to be offset to properly coincide with a location on the map.
Default value is 0 and the symbol is centered horizontally on the point geometry. The values specified are interpreted in a cartesian coordinate system. Thus, a value of -5 will shift the marker left by 5 points on the x-axis.
For example, consider an AGSPictureMarkerSymbol
using the image of a pushpin. By default, the center of the image will be used as the anchor to center the image at the map location. However, if you wanted the needle of the pushpin to end at the map location, you would need to offset the image appropriately to make the needle's end coincide with the map location.
|
readwritenonatomicassigninherited |
Specifies how to position the symbol in relation to the graphic or feature's point geometry. This is useful when the marker needs to be offset to properly coincide with a location on the map.
Default value is 0 and the symbol is centered vertically on the point geometry. The values specified are interpreted in a cartesian coordinate system. Thus, a value of -5 will shift the marker down by 5 points on the y-axis.
For example, consider an AGSPictureMarkerSymbol
using the image of a pushpin. By default, the center of the image will be used as the anchor to center the image at the map location. However, if you wanted the needle of the pushpin to end at the map location, you would need to offset the image appropriately to make the needle's end coincide with the map location.
|
readwritenonatomicassign |
Opacity of the symbol. Defaults to 1
(fully opaque). Permitted values range between 0
- 1
(both inclusive).
|
readwritenonatomicstronginherited |
The AGSRequestConfiguration object which defines the behavior and policies to use when accessing the remote resource. The default will be nil. If it is nil the [AGSRequestConfiguration globalConfiguration] will be used.
|
readrequirednonatomiccopyinherited |
A dictionary of values that was in the source JSON but was unparsed by API.
NSDictionary
containing the unknown JSON.
|
readnonatomiccopyinherited |
A dictionary of values that are supported by the REST API, but not exposed through the SDK API.
NSDictionary
containing the unsupported JSON.
|
readrequirednonatomicstronginherited |
The URL of the remote resource.
|
readwritenonatomicassign |
The width (in points, not pixels) of the symbol. Defaults to size of the image.