LandmarkPositionObject

Objective-C


@interface LandmarkPositionObject : NSObject

Swift

class LandmarkPositionObject : NSObject

This class encapsulates landmark position information.

  • Initializes and returns a newly allocated object using the model data.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithModelData:(nonnull void *)data;
  • Returns the model data.

    Declaration

    Objective-C

    - (nonnull void *)getModelData;
  • Returns the landmark object.

    Declaration

    Objective-C

    - (nonnull LandmarkObject *)getLandmark;

    Swift

    func getLandmark() -> LandmarkObject
  • Returns the distance in meters from reference coordinates to the landmark object.

    Declaration

    Objective-C

    - (int)getDistance;

    Swift

    func getDistance() -> Int32