SITPOIWithDistance

Objective-C

@interface SITPOIWithDistance : NSObject

Swift

class SITPOIWithDistance : NSObject

Class that store the distance information from a location to a given SITPoi

  • poi

    SITPoi to which the distance was calculated

    Declaration

    Objective-C

    @property (nonatomic, strong) SITPOI *_Nonnull poi;

    Swift

    var poi: SITPOI { get set }
  • Distance in metter from the the location to the SITPOi

    Declaration

    Objective-C

    @property (nonatomic) double distance;

    Swift

    var distance: Double { get set }