VisionLatitudeLongitude
class VisionLatitudeLongitude : NSObjectAn object representing a latitude/longitude pair. This is expressed as a pair of doubles representing degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the WGS84 standard. Values must be within normalized ranges.
-
The latitude in degrees. It must be in the range [-90.0, +90.0]. The value is double.
Declaration
Swift
var latitude: NSNumber? { get set } -
The longitude in degrees. It must be in the range [-180.0, +180.0]. The value is double.
Declaration
Swift
var longitude: NSNumber? { get set } -
Initializes a VisionLatitudeLongitude with the given latitude and longitude.
Declaration
Swift
init(latitude: NSNumber?, longitude: NSNumber?)Parameters
latitudeLatitude of the location. The value is double.
longitudeLongitude of the location. The value is double.
Return Value
A VisionLatitudeLongitude instance with the given latigude and longitude.
-
Unavailable.