AddressRanges

data class AddressRanges(    val rangeLeft: String = "",     val rangeRight: String = "",     val from: GeoCoordinate?,     val to: GeoCoordinate?)

Address ranges on a street segment.

Parameters

rangeLeft

An address range on the left side of a street segment (assuming looking from the "from" end towards the "to" end).

rangeRight

An address range on the right side of a street segment (assuming looking from the "from" end towards the "to" end).

from

The start point of a street segment.

to

The end point of a street segment.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
fun AddressRanges(    rangeLeft: String = "",     rangeRight: String = "",     from: GeoCoordinate?,     to: GeoCoordinate?)

Properties

Link copied to clipboard
val from: GeoCoordinate?
Link copied to clipboard
val rangeLeft: String
Link copied to clipboard
val rangeRight: String
Link copied to clipboard
val to: GeoCoordinate?