MPICoordinates
public struct MPICoordinates : Codable, Equatable
This MPICoordinates
represents specfic coordinates/location of an object.
-
latitude of the coordinate
Declaration
Swift
public let latitude: Double
-
longitude of the coordinate
Declaration
Swift
public let longitude: Double
-
accuracy of the position
Declaration
Swift
public let accuracy: Double
-
floorLevel of the position
Declaration
Swift
public let floorLevel: Int?
-
Construct an
MPICoordinates
object with the given propertiesDeclaration
Swift
public init(latitude: Double, longitude: Double, accuracy: Double, floorLevel: Int?)