TomTom Maps for JavaScript
    Preparing search index...

    Type Alias AddressRanges

    Address range information for a street segment.

    Used for Address Range type results to indicate ranges of addresses along a street segment.

    type AddressRanges = {
        from: Position;
        rangeLeft: string;
        rangeRight: string;
        to: Position;
    }
    Index

    Properties

    from: Position

    Starting coordinates of the street segment [longitude, latitude].

    rangeLeft: string

    Address range on the left side of the street.

    Looking from the 'from' point toward the 'to' point.

    rangeRight: string

    Address range on the right side of the street.

    Looking from the 'from' point toward the 'to' point.

    Ending coordinates of the street segment [longitude, latitude].