ArcGIS Runtime SDK for iOS: AGSTileKey Class Reference
ArcGIS Runtime SDK for iOS  100.15
AGSTileKey Class Reference

Description

A tile key.

Instances of this class represent a "key" (as in a key-value pair) that uniquely identifies a tile in a tiling scheme.

Since
100
Inheritance diagram for AGSTileKey:
AGSObject

Instance Methods

(instancetype) - initWithLevel:column:row:
 
(BOOL) - isEqualToTileKey:
 

Class Methods

(instancetype) + tileKeyWithLevel:column:row:
 

Properties

NSInteger column
 
NSInteger level
 
NSInteger row
 

Method Documentation

◆ initWithLevel:column:row:

- (instancetype) initWithLevel: (NSInteger)  level
column: (NSInteger)  column
row: (NSInteger)  row 

Create a tile key from the specified level, column and row.

Parameters
levelin the tiling scheme that the tile belongs to
columnin the tiling scheme that the tile belongs to
rowin the tiling scheme that the tile belongs to
Returns
Initialized tile key
Since
100

◆ isEqualToTileKey:

- (BOOL) isEqualToTileKey: (AGSTileKey *)  other

Compares two tile keys for equality

Parameters
othertile key to compare this one to
Returns
whether the two tile keys are equal
Since
100

◆ tileKeyWithLevel:column:row:

+ (instancetype) tileKeyWithLevel: (NSInteger)  level
column: (NSInteger)  column
row: (NSInteger)  row 

Create a tile key from the specified level, column and row.

Parameters
levelin the tiling scheme that the tile belongs to
columnin the tiling scheme that the tile belongs to
rowin the tiling scheme that the tile belongs to
Returns
Initialized tile key
Since
100

Property Documentation

◆ column

- (NSInteger) column
readnonatomicassign

The column of tiling scheme.

Since
100

◆ level

- (NSInteger) level
readnonatomicassign

The scale level of tiling scheme

Since
100

◆ row

- (NSInteger) row
readnonatomicassign

The row of tiling scheme

Since
100