LocationDetails
public struct LocationDetails : Hashable
Contains geographical info about location
-
The geographic coordinates of the place.
Declaration
Swift
public var coordinates: GeoCoordinates -
Trueif has house number with coordinates interpolated from the address range.Declaration
Swift
public var coordinatesInterpolated: Bool -
The access points to the place, such as the points on a road or in a parking lot.
Declaration
Swift
public var accessPoints: [GeoCoordinates] -
The geographic coordinates of the map bounding box containing the place.
Declaration
Swift
public var boundingBox: GeoBox? -
Creates a new instance.
Declaration
Swift
public init(coordinates: GeoCoordinates, coordinatesInterpolated: Bool = false, accessPoints: [GeoCoordinates] = [], boundingBox: GeoBox? = nil)