Structure
    MobiledgeXiOSLibrary.MatchingEngine.Loc
public struct Loc: Codable
Object used and returned in gps_location field of serveral API requests and replies
Relationships
Member Of
MobiledgeXiOSLibrary.MatchingEngineMatchingEngine class MobiledgeX MatchingEngine APIs
Conforms To
Codable
Initializers
        init(latitude:longitude:)
    
    public init(latitude: Double, longitude: Double)
Properties
        latitude
    
    var latitude: Double?
        longitude
    
    var longitude: Double?
        horizontal_accuracy
    
    var horizontal_accuracy: Double?
        vertical_accuracy
    
    var vertical_accuracy: Double?
        altitude
    
    var altitude: Double?
        course
    
    var course: Double?
        speed
    
    var speed: Double?
        timestamp
    
    var timestamp: Timestamp?