interface MapProblem {
    geometry: Point;
    id: string;
    isEditable: boolean;
    isOpen: boolean;
    isRead: boolean;
    isStarred: boolean;
    problemType: MapProblemType;
    resolvedOn: null | number;
    severity: IssueSeverity;
}

Properties

geometry: Point

The GeoJSON Point representation of the problem's location.

id: string
isEditable: boolean

Whether the problem is editable or not.

isOpen: boolean

Whether the problem is open or not.

isRead: boolean

Whether the problem is read or not.

isStarred: boolean

Whether the problem is starred or not.

problemType: MapProblemType

The type of the problem.

resolvedOn: null | number

The timestamp of the problem resolution date and time. null if the problem is not resolved.

severity: IssueSeverity

The severity of the problem.