MLKitBarcodeScanning Framework Reference

  • MLKBarcodeGeoPoint represents GPS coordinates obtained from QR codes containing location data (like GEO: type).

  • It provides read-only access to the latitude and longitude values of the geographical point.

  • Attempting to initialize MLKBarcodeGeoPoint directly using init is not allowed.

MLKBarcodeGeoPoint


@interface MLKBarcodeGeoPoint : NSObject

GPS coordinates from a GEO: or similar QR Code type data.

  • A location latitude.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double latitude;
  • A location longitude.

    Declaration

    Objective-C

    @property (nonatomic, readonly) double longitude;
  • Unavailable.

    Declaration

    Objective-C

    - (nonnull instancetype)init;