MSFRasterTileClickInfo

Objective-C


@interface MSFRasterTileClickInfo : NSObject {
  void *swigCPtr;
  BOOL swigCMemOwn;
}

Swift

class MSFRasterTileClickInfo : NSObject

A container class that provides information about a click performed on raster tile.

  • Checks if this object is equal to the specified object.

    Declaration

    Objective-C

    - (BOOL)isEqual:(id)object;

    Swift

    func isEqual(_ object: Any!) -> Bool

    Parameters

    object

    The reference object.

    Return Value

    True when objects are equal, false otherwise.

  • Returns the hash value of this object.

    Declaration

    Objective-C

    - (NSUInteger)hash;

    Swift

    func hash() -> UInt

    Return Value

    The hash value of this object.

  • Returns the click type.

    Declaration

    Objective-C

    - (enum MSFClickType)getClickType;

    Swift

    func getClickType() -> MSFClickType

    Return Value

    The type of the click performed.

  • Returns the click info.

    Declaration

    Objective-C

    - (MSFClickInfo *)getClickInfo;

    Swift

    func getClickInfo() -> MSFClickInfo!

    Return Value

    The attributes of the click.

  • Returns the click position.

    Declaration

    Objective-C

    - (MSFMapPos *)getClickPos;

    Swift

    func getClickPos() -> MSFMapPos!

    Return Value

    The click position in the coordinate system of the data source.

  • Returns the tile id of the clicked feature.

    Declaration

    Objective-C

    - (MSFMapTile *)getMapTile;

    Swift

    func getMapTile() -> MSFMapTile!

    Return Value

    The tile id of the clicked feature.

  • Returns the color of the nearest pixel to the click position.

    Declaration

    Objective-C

    - (MSFColor *)getNearestColor;

    Swift

    func getNearestColor() -> MSFColor!

    Return Value

    The color of the nearest pixel to the click position.

  • Returns the interpolated color at the click position.

    Declaration

    Objective-C

    - (MSFColor *)getInterpolatedColor;

    Swift

    func getInterpolatedColor() -> MSFColor!

    Return Value

    The interpolated color at the click position.

  • Returns the layer of the raster tile.

    Declaration

    Objective-C

    - (MSFLayer *)getLayer;

    Swift

    func getLayer() -> MSFLayer!

    Return Value

    The layer of the raster tile.

  • Undocumented

    Declaration

    Objective-C

    -(void)dealloc;

    Swift

    func dealloc()