TTMatcherLocation

@interface TTMatcherLocation : TTLocation

A TTMatcherLocation object contains the geographical location with additonal data for Matcher.

  • Declaration

    Objective-C

    - (instancetype _Nonnull)initWithCoordinate:(CLLocationCoordinate2D)coordinate
                                    withBearing:(double)bearing
                               withBearingValid:(_Bool)bearingValid
                                        withEPE:(double)epe
                                      withSpeed:(double)spped
                                   withDuration:(double)duration;

    Swift

    init(coordinate: CLLocationCoordinate2D, withBearing bearing: Double, withBearingValid bearingValid: Bool, withEPE epe: Double, withSpeed spped: Double, withDuration duration: Double)

    Parameters

    coordinate

    CLLocationCoordinate2D

    bearing

    double

    bearingValid

    bool

    epe

    double

    spped

    double

    duration

    double

    Return Value

    TTMatcherLocation