Waze Map Editor JavaScript SDK
    Preparing search index...

    Interface HouseNumber

    Represents a house number associated with a segment. It provides information about the house number itself, its location, and its relation to the segment.

    interface HouseNumber {
        fractionPoint: null | Point;
        geometry: Point;
        id: string;
        isForced: boolean;
        number: string;
        segmentId: number;
        updatedBy: null | string;
    }
    Index

    Properties

    fractionPoint: null | Point

    A GeoJSON Point representing the stop point along the segment that the house number is associated with. This point determines the location on the segment where navigation to the house number should end. Internally, this location is stored as a fraction of the segment's total length from its starting point, represented as a ratio multiplied by 10,000. This fractional value is then translated into a geographic coordinate (Point). It can be null if the stop point is not defined.

    geometry: Point

    The GeoJSON Point representing the precise location of the house number. This is the main coordinate for the house number.

    id: string
    isForced: boolean

    Whether the house number position was manually adjusted by an editor.

    number: string

    The house number itself as a string.

    segmentId: number

    The ID of the segment to which this house number is associated.

    updatedBy: null | string

    The username of the user who last updated the house number.