open class AddressRanges : Serializable
The address ranges on a street segment retrieved via a Search request. Available only for results where the result type is equal to "Address Range".
AddressRanges()
Empty constructor for the AddressRanges(rangeLeft: String!, rangeRight: String!, from: LatLng!, to: LatLng!)
Default constructor for the |
var from: LatLng!
The beginning point of a street segment. |
|
var rangeLeft: String!
An address range on the left side of a street segment (assuming looking from the "from" end towards the "to" end). |
|
var rangeRight: String!
An address range on the right side of a street segment (assuming looking from the "from" end towards the "to" end). |
|
var to: LatLng!
The end point of a street segment. |
open fun getFrom(): LatLng!
Returns the beginning point of a street segment. |
|
open fun getRangeLeft(): String!
Returns an address range on the left side of a street segment. |
|
open fun getRangeRight(): String!
Returns an address range on the right side of a street segment. |
|
open fun getTo(): LatLng!
Returns the end point of a street segment. |
|
open fun toString(): String |