interface BigJunction {
    cityId: null | number;
    geometry: Polygon;
    id: number;
    modificationData: ModificationMetadata;
    name: null | string;
    segmentIds: number[];
}

Properties

cityId: null | number

The id of the city associated with the junction.

geometry: Polygon

The GeoJSON Polygon representation of the junction's geometry.

id: number
modificationData: ModificationMetadata
name: null | string

The name of the junction.

segmentIds: number[]

The list of the segment ids that the junction is on.