IALatLngFloor

Objective-C


@interface IALatLngFloor : NSObject <IALatLngFloorCompatible>

Swift

class IALatLngFloor : NSObject, IALatLngFloorCompatible

Represents generic location with latitude, longitude and floor number

  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly) CLLocationDegrees latitude

    Swift

    var latitude: CLLocationDegrees { get }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly) CLLocationDegrees longitude

    Swift

    var longitude: CLLocationDegrees { get }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSInteger floor

    Swift

    var floor: Int { get }
  • Undocumented

    Declaration

    Objective-C

    + (nonnull IALatLngFloor *)latLngFloorWithLatitude:(CLLocationDegrees)latitude andLongitude:(CLLocationDegrees)longitude andFloor:(NSInteger)floor;

    Swift

    /*not inherited*/ init(latitude: CLLocationDegrees, andLongitude longitude: CLLocationDegrees, andFloor floor: Int)
  • Undocumented

    Declaration

    Objective-C

    + (nonnull IALatLngFloor *)latLngFloorWithCoordinate:(CLLocationCoordinate2D)coordinate andFloor:(NSInteger)floor;

    Swift

    /*not inherited*/ init(coordinate: CLLocationCoordinate2D, andFloor floor: Int)